/* ═══════════════════════════════════════════════════════════════════════
   Neptor AI investor deck  -  dark UI (near-black + brand gradient)
   ═══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Design Tokens ───────────────────────────────────────────────────── */
:root {
    --btc:            #FF3B30;
    --btc-rgb:        255, 59, 48;
    --btc-dark:       #E63228;
    --btc-light:      rgba(255, 59, 48, 0.12);
    --btc-glow:       rgba(255, 59, 48, 0.22);

    --brand-orange:   #FF9500;
    --brand-orange-rgb: 255, 149, 0;

    --bg-primary:     #0A0A0A;
    --bg-secondary:   #141414;
    --bg-card:        rgba(20, 20, 20, 0.92);
    --bg-card-hover:  rgba(20, 20, 20, 1);

    --border-subtle:  #2E2E2E;
    --border-strong:  #3A3A3A;

    --text-primary:   #EDEDED;
    --text-secondary: #B5B5B5;
    --text-muted:     #8B8B8B;

    --accent-green:   #34d399;
    --accent-success: #30D158;

    --accent-warm:    var(--brand-orange);

    --shadow-glow:    0 0 40px rgba(255, 59, 48, 0.18);
    --shadow-card:    0 4px 30px rgba(0,0,0,0.45);

    --radius:         16px;
    --radius-sm:      10px;
    --radius-xs:      6px;
}

/* ── Reset & Base ────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

/* ── Slide Container ─────────────────────────────────────────────────── */
.ppt-container {
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide.slide-hidden {
    display: none !important;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 6rem;
    overflow: hidden;
    opacity: 0;
    transform: translateX(60px);
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background:
        radial-gradient(ellipse at 70% 15%, rgba(var(--btc-rgb),0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(var(--brand-orange-rgb),0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 70%, rgba(255,255,255,0.03) 0%, transparent 45%),
        linear-gradient(165deg, #0A0A0A 0%, #0d0d0d 35%, #111111 70%, #141414 100%);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    z-index: 10;
}

.slide.exit-left {
    opacity: 0;
    transform: translateX(-60px);
}

.slide.exit-right {
    opacity: 0;
    transform: translateX(60px);
}

.slide > * {
    flex-shrink: 1;
    min-height: 0;
    max-width: 100%;
}

/* ── Backgrounds ─────────────────────────────────────────────────────── */
.slide::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--btc-rgb),0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: glowDrift 12s ease-in-out infinite alternate;
}

.slide::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--brand-orange-rgb),0.08) 0%, transparent 70%);
    animation: glowDrift 15s ease-in-out infinite alternate-reverse;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.slide > * { position: relative; z-index: 1; }

/* ── Grid pattern overlay ── */
.slide .grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(46,46,46,0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,46,46,0.35) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ── Particle Canvas ─────────────────────────────────────────────────── */
#particle-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════
   SLIDE TYPES
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Title Slide ─────────────────────────────────────────────────────── */
.slide-title {
    text-align: center;
}

.slide-title .bitcoin-logo {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(var(--btc-rgb),0.45));
}

.slide-title h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-title h1 .accent {
    background: linear-gradient(135deg, var(--btc) 0%, var(--brand-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-title .subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.slide-title .author-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--btc-rgb),0.12);
    border: 1px solid rgba(var(--btc-rgb),0.25);
    color: var(--btc);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1rem 0.5rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--btc-rgb),0.22);
    background: rgba(var(--btc-rgb),0.08);
    margin-bottom: 1.5rem;
}

.brand-badge__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(var(--btc-rgb),0.2);
}

.brand-badge__mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 900;
    color: #0A0A0A;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--btc) 0%, var(--brand-orange) 100%);
    box-shadow: 0 12px 30px rgba(var(--btc-rgb),0.25);
    flex-shrink: 0;
}

.brand-badge__mark svg {
    width: 22px;
    height: 22px;
}

.brand-badge__text {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.metric-strip {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
    margin-top: 2rem;
}

.metric-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-card);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mini-subtitle {
    width: 100%;
    max-width: 900px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.box-title {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    text-align: center;
}

.source-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.76rem;
    line-height: 1.5;
}

.data-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
}

.data-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.data-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.data-grid-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.data-card {
    min-width: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.2rem 1.2rem 1.15rem;
    box-shadow: var(--shadow-card);
    min-height: 150px;
}

.data-card:hover {
    border-color: rgba(var(--btc-rgb),0.24);
    box-shadow: var(--shadow-glow);
}

.data-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.95rem;
    border-radius: 12px;
    background: rgba(var(--btc-rgb),0.12);
    border: 1px solid rgba(var(--btc-rgb),0.18);
    font-size: 1.05rem;
}

.data-value {
    font-size: 2.15rem;
    line-height: 1;
    font-weight: 900;
    color: var(--btc);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.data-label {
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.45rem;
}

.data-note {
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.55;
}

.stat-card .data-label {
    min-height: 2.6em;
}

.stat-card .data-note {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.market-stack {
    display: grid;
    gap: 0.85rem;
}

.market-layer {
    border-radius: 14px;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(90deg, rgba(var(--btc-rgb),0.14), rgba(255,255,255,0.02));
}

.market-layer-1 {
    background: linear-gradient(90deg, rgba(var(--btc-rgb),0.18), rgba(255,255,255,0.03));
}

.market-layer-2 {
    background: linear-gradient(90deg, rgba(var(--brand-orange-rgb),0.16), rgba(255,255,255,0.03));
}

.market-layer-3 {
    background: linear-gradient(90deg, rgba(52,211,153,0.16), rgba(255,255,255,0.03));
}

.market-layer-4 {
    background: linear-gradient(90deg, rgba(139,139,139,0.16), rgba(255,255,255,0.03));
}

.market-layer__value {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
}

.market-layer__label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.45;
}

.roadmap-card {
    min-height: 190px;
}

.roadmap-time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.95rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(var(--btc-rgb),0.12);
    border: 1px solid rgba(var(--btc-rgb),0.2);
    color: var(--btc);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ask-grid .data-card {
    text-align: left;
}

/* ── Content Slide ───────────────────────────────────────────────────── */
.slide-content {
    text-align: left;
    align-items: flex-start;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.slide-content .slide-header {
    width: 100%;
    margin-bottom: 1.5rem;
}

.slide-content .slide-number {
    display: inline-block;
    background: var(--btc);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.slide-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.slide-content h2 .accent {
    color: var(--btc);
}

.slide-content .slide-body {
    width: 100%;
    display: flex;
    gap: 3rem;
    flex: 1;
    align-items: flex-start;
}

.slide-content .slide-text {
    flex: 1;
    min-width: 0;
}

.slide-content .slide-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.slide-content .slide-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

/* ── Bullet Lists ────────────────────────────────────────────────────── */
.slide-bullets {
    list-style: none;
    padding: 0;
    width: 100%;
}

.slide-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    opacity: 0;
    transform: translateX(-20px);
}

.slide-bullets li .bullet-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(var(--btc-rgb),0.12);
    border: 1px solid rgba(var(--btc-rgb),0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 2px;
}

.slide-bullets li strong {
    color: #fff;
    font-weight: 600;
}

/* Bullet animation when slide is active */
.slide.active .slide-bullets li {
    animation: bulletIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .slide-bullets li:nth-child(1) { animation-delay: 0.15s; }
.slide.active .slide-bullets li:nth-child(2) { animation-delay: 0.3s; }
.slide.active .slide-bullets li:nth-child(3) { animation-delay: 0.45s; }
.slide.active .slide-bullets li:nth-child(4) { animation-delay: 0.6s; }
.slide.active .slide-bullets li:nth-child(5) { animation-delay: 0.75s; }
.slide.active .slide-bullets li:nth-child(6) { animation-delay: 0.9s; }

@keyframes bulletIn {
    to { opacity: 1; transform: translateX(0); }
}

/* ── Info Cards Grid ─────────────────────────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    width: 100%;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(var(--btc-rgb),0.22);
    box-shadow: var(--shadow-glow);
}

.info-card .card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.slide.active .info-card {
    animation: cardIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .info-card:nth-child(1) { animation-delay: 0.1s; }
.slide.active .info-card:nth-child(2) { animation-delay: 0.2s; }
.slide.active .info-card:nth-child(3) { animation-delay: 0.3s; }
.slide.active .info-card:nth-child(4) { animation-delay: 0.4s; }
.slide.active .info-card:nth-child(5) { animation-delay: 0.5s; }
.slide.active .info-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Diagram Boxes ───────────────────────────────────────────────────── */
.diagram-box {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.2rem;
    padding-top: calc(1.2rem + 3px);
    width: 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.diagram-box::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 3px;
    background: linear-gradient(90deg, var(--btc), var(--brand-orange));
    border-radius: var(--radius) var(--radius) 0 0;
}

/* ── Flow Diagram ────────────────────────────────────────────────────── */
.flow-diagram {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: scale(0.8);
}

.flow-step .step-box {
    background: rgba(var(--btc-rgb),0.1);
    border: 1px solid rgba(var(--btc-rgb),0.25);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    text-align: center;
    min-width: 110px;
    transition: all 0.3s;
}

.flow-step .step-box:hover {
    background: rgba(var(--btc-rgb),0.18);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.flow-step .step-icon {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    display: block;
}

.flow-step .step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.flow-arrow {
    color: var(--btc);
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0;
}

.slide.active .flow-step {
    animation: flowIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .flow-arrow {
    animation: fadeIn 0.3s ease forwards;
}

.slide.active .flow-step:nth-child(1)  { animation-delay: 0.1s; }
.slide.active .flow-arrow:nth-child(2) { animation-delay: 0.25s; }
.slide.active .flow-step:nth-child(3)  { animation-delay: 0.35s; }
.slide.active .flow-arrow:nth-child(4) { animation-delay: 0.5s; }
.slide.active .flow-step:nth-child(5)  { animation-delay: 0.6s; }
.slide.active .flow-arrow:nth-child(6) { animation-delay: 0.75s; }
.slide.active .flow-step:nth-child(7)  { animation-delay: 0.85s; }
.slide.active .flow-arrow:nth-child(8) { animation-delay: 1.0s; }
.slide.active .flow-step:nth-child(9)  { animation-delay: 1.1s; }
.slide.active .flow-arrow:nth-child(10) { animation-delay: 1.25s; }
.slide.active .flow-step:nth-child(11) { animation-delay: 1.35s; }

@keyframes flowIn {
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ── Code Block ──────────────────────────────────────────────────────── */
.slide-code {
    background: #1e1e2e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.7;
    overflow-x: auto;
    color: #cdd6f4;
    width: 100%;
}

.slide-code .keyword { color: #EDEDED; }
.slide-code .string { color: #34d399; }
.slide-code .number { color: var(--brand-orange); }
.slide-code .comment { color: #8B8B8B; font-style: italic; }
.slide-code .func { color: #B5B5B5; }
.slide-code .op { color: var(--btc); }

/* ── Stats Row ───────────────────────────────────────────────────────── */
.stats-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
}

.stat-item .stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--btc);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.slide.active .stat-item {
    animation: statIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .stat-item:nth-child(1) { animation-delay: 0.2s; }
.slide.active .stat-item:nth-child(2) { animation-delay: 0.35s; }
.slide.active .stat-item:nth-child(3) { animation-delay: 0.5s; }
.slide.active .stat-item:nth-child(4) { animation-delay: 0.65s; }

@keyframes statIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Visual Elements ─────────────────────────────────────────────────── */
.hash-visual {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--brand-orange);
    word-break: break-all;
    background: rgba(var(--btc-rgb),0.06);
    padding: 1rem;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(var(--btc-rgb),0.18);
    text-align: center;
    line-height: 1.8;
    opacity: 0;
}

.slide.active .hash-visual {
    animation: typeIn 0.8s ease forwards 0.3s;
}

@keyframes typeIn {
    0%   { opacity: 0; clip-path: inset(0 100% 0 0); }
    100% { opacity: 1; clip-path: inset(0 0 0 0); }
}

@keyframes glowDrift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(15px, -10px) scale(1.08); }
    100% { transform: translate(-10px, 8px) scale(1.03); }
}

/* ── Export Button ───────────────────────────────────────────────────── */
.export-btn {
    position: fixed;
    top: 1rem;
    right: 4.5rem;
    height: 36px;
    padding: 0 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(15,15,26,0.6);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 100;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.export-btn:hover {
    background: rgba(var(--btc-rgb),0.12);
    border-color: rgba(var(--btc-rgb),0.25);
    color: var(--btc);
}

.export-btn:disabled {
    opacity: 0.5;
    cursor: wait;
}

/* ── Blockchain Visual ───────────────────────────────────────────────── */
.blockchain-visual {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.block-viz {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
}

.block-viz .block-box {
    width: 120px;
    height: 100px;
    background: linear-gradient(145deg, rgba(var(--btc-rgb),0.15), rgba(var(--btc-rgb),0.05));
    border: 1.5px solid rgba(var(--btc-rgb),0.3);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    position: relative;
    transition: all 0.3s;
}

.block-viz .block-box:hover {
    border-color: var(--btc);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.block-viz .block-num {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.block-viz .block-hash {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    color: var(--brand-orange);
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.block-viz .block-icon {
    font-size: 1.5rem;
}

.chain-link {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--btc), rgba(var(--btc-rgb),0.3));
    position: relative;
    opacity: 0;
}

.chain-link::after {
    content: '▸';
    position: absolute;
    right: -4px;
    top: -8px;
    color: var(--btc);
    font-size: 0.9rem;
}

.slide.active .block-viz {
    animation: blockDrop 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .chain-link {
    animation: chainGrow 0.3s ease forwards;
}

.slide.active .block-viz:nth-child(1) { animation-delay: 0.2s; }
.slide.active .chain-link:nth-child(2) { animation-delay: 0.45s; }
.slide.active .block-viz:nth-child(3) { animation-delay: 0.6s; }
.slide.active .chain-link:nth-child(4) { animation-delay: 0.8s; }
.slide.active .block-viz:nth-child(5) { animation-delay: 0.95s; }
.slide.active .chain-link:nth-child(6) { animation-delay: 1.15s; }
.slide.active .block-viz:nth-child(7) { animation-delay: 1.3s; }

@keyframes blockDrop {
    0%   { opacity: 0; transform: translateY(30px); }
    60%  { transform: translateY(-5px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes chainGrow {
    0%   { opacity: 0; transform: scaleX(0); }
    100% { opacity: 1; transform: scaleX(1); }
}

/* ── Animated SVG Diagrams ───────────────────────────────────────────── */
.svg-diagram {
    width: 100%;
    max-width: 500px;
}

.svg-diagram svg {
    width: 100%;
    height: auto;
}

/* ── Mining Animation ────────────────────────────────────────────────── */
.mining-visual {
    text-align: center;
    width: 100%;
}

.nonce-counter {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    color: var(--btc);
    margin-bottom: 0.5rem;
}

.hash-output {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--brand-orange);
    padding: 0.75rem 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: var(--radius-xs);
    border: 1px solid rgba(var(--brand-orange-rgb),0.22);
    word-break: break-all;
    min-height: 2rem;
}

.hash-output .leading-zeros {
    color: var(--accent-green);
    font-weight: 700;
}

.mining-status {
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.mining-status.searching { color: var(--btc); }
.mining-status.found { color: var(--accent-green); }

/* ═══════════════════════════════════════════════════════════════════════
   NAVIGATION & CONTROLS
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Progress Bar ────────────────────────────────────────────────────── */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.05);
    z-index: 100;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--btc), var(--brand-orange));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(var(--btc-rgb),0.5);
}

/* ── Slide Counter ───────────────────────────────────────────────────── */
.slide-counter {
    position: fixed;
    bottom: 1.5rem;
    right: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    z-index: 100;
    font-family: 'JetBrains Mono', monospace;
}

.slide-counter .current-num {
    color: var(--btc);
    font-size: 1.1rem;
}

/* ── Navigation Arrows ───────────────────────────────────────────────── */
.nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(15,15,26,0.8);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 100;
}

.nav-arrow:hover {
    background: rgba(var(--btc-rgb),0.15);
    border-color: rgba(var(--btc-rgb),0.3);
    color: var(--btc);
    box-shadow: var(--shadow-glow);
}

.nav-arrow.prev { left: 1.5rem; }
.nav-arrow.next { right: 1.5rem; }

.nav-arrow:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

/* ── Slide Dots ──────────────────────────────────────────────────────── */
.slide-dots {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 100;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.slide-dot:hover {
    background: rgba(var(--btc-rgb),0.4);
    transform: scale(1.3);
}

.slide-dot.active {
    background: var(--btc);
    box-shadow: 0 0 8px rgba(var(--btc-rgb),0.5);
    transform: scale(1.2);
    width: 24px;
    border-radius: 4px;
}

/* ── Keyboard Hint ───────────────────────────────────────────────────── */
.keyboard-hint {
    position: fixed;
    bottom: 1.5rem;
    left: 2rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    z-index: 100;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.keyboard-hint:hover { opacity: 0.8; }

.key-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

/* ── Fullscreen Button ───────────────────────────────────────────────── */
.fullscreen-btn {
    position: fixed;
    top: 1rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(15,15,26,0.6);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s;
}

.fullscreen-btn:hover {
    background: rgba(var(--btc-rgb),0.12);
    border-color: rgba(var(--btc-rgb),0.25);
    color: var(--btc);
}

/* ═══════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════ */

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.5; }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(var(--btc-rgb),0.2); }
    50%      { box-shadow: 0 0 25px rgba(var(--btc-rgb),0.4); }
}

/* ── Slide-in Animations ─────────────────────────────────────────────── */
.anim-fade-up {
    opacity: 0;
    transform: translateY(25px);
}

.slide.active .anim-fade-up {
    animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .anim-fade-up.d1 { animation-delay: 0.1s; }
.slide.active .anim-fade-up.d2 { animation-delay: 0.2s; }
.slide.active .anim-fade-up.d3 { animation-delay: 0.3s; }
.slide.active .anim-fade-up.d4 { animation-delay: 0.4s; }
.slide.active .anim-fade-up.d5 { animation-delay: 0.5s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.anim-scale-in {
    opacity: 0;
    transform: scale(0.85);
}

.slide.active .anim-scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide.active .anim-scale-in.d1 { animation-delay: 0.1s; }
.slide.active .anim-scale-in.d2 { animation-delay: 0.2s; }
.slide.active .anim-scale-in.d3 { animation-delay: 0.3s; }
.slide.active .anim-scale-in.d4 { animation-delay: 0.4s; }
.slide.active .anim-scale-in.d5 { animation-delay: 0.5s; }

@keyframes scaleIn {
    to { opacity: 1; transform: scale(1); }
}

/* ── Network Node Animation ──────────────────────────────────────────── */
.network-viz {
    position: relative;
    width: 300px;
    height: 300px;
}

.network-node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(var(--btc-rgb),0.15);
    border: 1.5px solid rgba(var(--btc-rgb),0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transform: scale(0);
    animation: nodeIn 0.4s ease forwards;
}

.slide.active .network-node:nth-child(1) { animation-delay: 0.2s; }
.slide.active .network-node:nth-child(2) { animation-delay: 0.35s; }
.slide.active .network-node:nth-child(3) { animation-delay: 0.5s; }
.slide.active .network-node:nth-child(4) { animation-delay: 0.65s; }
.slide.active .network-node:nth-child(5) { animation-delay: 0.8s; }
.slide.active .network-node:nth-child(6) { animation-delay: 0.95s; }

@keyframes nodeIn {
    to { opacity: 1; transform: scale(1); }
}

/* ── Thank You Slide ─────────────────────────────────────────────────── */
.slide-thankyou {
    text-align: center;
}

.slide-thankyou h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--btc) 0%, var(--brand-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-thankyou p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.slide-thankyou .links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-thankyou .link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(var(--btc-rgb),0.25);
    color: var(--btc);
    background: rgba(var(--btc-rgb),0.08);
}

.slide-thankyou .link-btn:hover {
    background: rgba(var(--btc-rgb),0.18);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* ── Two-Column Layout ───────────────────────────────────────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
    align-items: start;
}

.slide-content,
.slide-header,
.diagram-box,
.highlight-box,
.comp-insight,
.data-grid,
.revenue-model,
.roadmap,
.moat-grid,
.why-now-grid,
.live-grid,
.scenario-table,
.traction-table,
.merchant-math-table {
    max-width: 100%;
}

.two-col > * {
    min-width: 0;
}

/* ── Highlight Box ───────────────────────────────────────────────────── */
.highlight-box {
    background: linear-gradient(135deg, rgba(var(--btc-rgb),0.08), rgba(var(--btc-rgb),0.02));
    border: 1px solid rgba(var(--btc-rgb),0.15);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-top: 0.6rem;
}

.highlight-box .tag {
    display: inline-block;
    background: var(--btc);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.highlight-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ── Transaction Visual ──────────────────────────────────────────────── */
.tx-visual {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    width: 100%;
    padding: 1rem 0;
}

.tx-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.tx-inout {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xs);
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    text-align: center;
    min-width: 100px;
}

.tx-inout.input-box {
    border-color: rgba(56,161,105,0.3);
    background: rgba(56,161,105,0.06);
}

.tx-inout.output-box {
    border-color: rgba(255,149,0,0.28);
    background: rgba(255,149,0,0.06);
}

.tx-center-icon {
    font-size: 2.5rem;
    color: var(--btc);
    animation: pulse 2s ease-in-out infinite;
}

.tx-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ── Visual Chart Blocks ─────────────────────────────────────────────── */
.funnel-chart,
.compare-chart,
.chain-bars,
.pipeline-list {
    display: grid;
    gap: 0.8rem;
}

.funnel-row,
.compare-row,
.chain-row,
.pipeline-item {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 0.75rem;
    align-items: center;
}

.funnel-row span,
.compare-label,
.chain-row span,
.pipeline-item span {
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
}

.compare-track,
.chain-track,
.pipeline-track {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}

.funnel-bar {
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--btc), var(--brand-orange));
}

.compare-fill,
.chain-fill,
.pipeline-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--btc), var(--brand-orange));
}

.compare-fill.fill-a { background: linear-gradient(90deg, #FF3B30, #FF9500); }
.compare-fill.fill-b { background: linear-gradient(90deg, #34d399, #6ee7b7); }
.compare-fill.fill-c { background: linear-gradient(90deg, #8B8B8B, #B5B5B5); }

.compare-value,
.chain-row b,
.pipeline-item b {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.kpi-chip-row {
    margin-top: 1rem;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.trend-bars {
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.7rem;
    align-items: stretch;
    height: 190px;
}

.trend-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.trend-bar {
    width: 100%;
    max-width: 58px;
    border-radius: 10px 10px 6px 6px;
    background: linear-gradient(180deg, rgba(var(--btc-rgb),0.9), rgba(var(--btc-rgb),0.35));
    border: 1px solid rgba(var(--btc-rgb),0.4);
    box-shadow: 0 10px 30px rgba(var(--btc-rgb),0.2);
}

.trend-col span {
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 700;
}

.matrix-table {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.matrix-head,
.matrix-cell {
    padding: 0.5rem 0.65rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.matrix-head {
    color: #fff;
    font-weight: 800;
    background: rgba(var(--btc-rgb),0.12);
}

.matrix-win {
    color: #a8f2d0;
    font-weight: 700;
}

.timeline-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.7rem;
}

.timeline-node {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.timeline-node b {
    color: var(--btc);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

.timeline-node span {
    color: var(--text-secondary);
    font-size: 0.78rem;
    line-height: 1.4;
}

/* ── Slide Subtitle (used on ONE, Competitive, Moats slides) ────────── */
.slide-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* ── Data Card Description ──────────────────────────────────────────── */
.data-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ── ONE Stablecoin Tagline ─────────────────────────────────────────── */
.one-tagline {
    color: var(--brand-orange);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
    .investor-deck .slide.investor-slide {
        justify-content: safe center;
    }

    .slide { padding: 2.5rem 2rem; justify-content: flex-start; overflow-y: auto; }
    .slide > * { flex-shrink: 0; }
    .slide-content .slide-body { flex: 0 0 auto; }
    .two-col { grid-template-columns: 1fr; gap: 1.5rem; }
    .slide-content .slide-body { flex-direction: column; }
    .data-grid-3,
    .data-grid-4,
    .data-grid-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .flow-diagram { gap: 0.3rem; }
    .flow-step .step-box { min-width: 80px; padding: 0.75rem 0.75rem; }
    .blockchain-visual { gap: 0; }
    .block-viz .block-box { width: 90px; height: 80px; }
    .nav-arrow { display: none; }
    .funnel-row,
    .compare-row,
    .chain-row,
    .pipeline-item {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    .trend-bars { height: 150px; }
    .timeline-strip { grid-template-columns: repeat(2, 1fr); }
    .matrix-table { grid-template-columns: 1.4fr 0.8fr 0.8fr !important; font-size: 0.72rem; }
    .matrix-head { font-size: 0.65rem; padding: 0.5rem 0.5rem; }
    .matrix-cell { padding: 0.45rem 0.5rem; font-size: 0.7rem; }
    .slide-subtitle { font-size: 0.88rem; }
    .data-desc { font-size: 0.72rem; }
}

@media (max-width: 1200px) {
    .slide {
        padding: 2.2rem 2.2rem 2.8rem;
    }
    .two-col {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .moat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-now-grid,
    .live-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .investor-deck .slide.investor-slide {
        justify-content: safe center;
    }

    .slide { padding: 1.8rem 1.2rem 3.5rem; justify-content: flex-start; overflow-y: auto; }
    .cards-grid { grid-template-columns: 1fr; }
    .data-grid-3,
    .data-grid-4,
    .data-grid-6 { grid-template-columns: 1fr; }
    .stats-row { gap: 1.5rem; }
    .stat-item .stat-value { font-size: 1.8rem; }
    .tx-visual { flex-direction: column; }
    .data-card { min-height: 0; }
    .timeline-strip { grid-template-columns: 1fr; }
    .hero-stat-row { grid-template-columns: 1fr; }
    .moat-row { grid-template-columns: 1fr; }
    .roadmap { grid-template-columns: 1fr; }
    .founder-card { flex-direction: column; text-align: center; }
    .founder-info { align-items: center; }
    .founder-badges { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO STATS  -  Big gradient numbers for key metrics
   ═══════════════════════════════════════════════════════════════════════ */
.hero-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.hero-stat {
    text-align: center;
    padding: 1.2rem 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.hero-stat:hover {
    border-color: rgba(var(--btc-rgb),0.25);
    background: rgba(var(--btc-rgb),0.04);
}

.hero-stat .hero-num {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--btc) 0%, var(--brand-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.hero-stat .hero-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════════════════
   MOAT CALLOUTS  -  Side-by-side differentiator boxes
   ═══════════════════════════════════════════════════════════════════════ */
.moat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    width: 100%;
}

.moat-card {
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(var(--btc-rgb),0.25);
    background: linear-gradient(145deg, rgba(var(--btc-rgb),0.08), rgba(var(--btc-rgb),0.02));
    position: relative;
    overflow: visible;
}

.moat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--btc), var(--brand-orange));
    border-radius: 4px 0 0 4px;
}

.moat-card .moat-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.moat-card .moat-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    background: rgba(var(--btc-rgb),0.15);
    color: var(--btc);
    margin-bottom: 0.6rem;
}

.moat-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.moat-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════
   SHIPPED LIST  -  Green checkmark product status
   ═══════════════════════════════════════════════════════════════════════ */
.shipped-list {
    display: grid;
    gap: 0.6rem;
}

.shipped-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    background: rgba(52,211,153,0.04);
    border: 1px solid rgba(52,211,153,0.15);
    border-radius: var(--radius-xs);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.shipped-item:hover {
    background: rgba(52,211,153,0.08);
    border-color: rgba(52,211,153,0.3);
}

.shipped-item .check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(52,211,153,0.15);
    color: #34d399;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    flex-shrink: 0;
}

.shipped-item.upcoming {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.08);
}

.shipped-item.upcoming .check {
    background: rgba(255,255,255,0.08);
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════
   ROADMAP TIMELINE  -  3 funding phases
   ═══════════════════════════════════════════════════════════════════════ */
.roadmap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    position: relative;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--btc), var(--brand-orange), rgba(237,237,237,0.35));
    border-radius: 2px;
    z-index: 0;
}

.roadmap-phase {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
}

.phase-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--btc);
    background: var(--bg-primary);
    margin-bottom: 0.75rem;
    position: relative;
    flex-shrink: 0;
}

.phase-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--btc);
}

.roadmap-phase:nth-child(2) .phase-dot {
    border-color: var(--brand-orange);
}
.roadmap-phase:nth-child(2) .phase-dot::after {
    background: var(--brand-orange);
}
.roadmap-phase:nth-child(3) .phase-dot {
    border-color: #8B8B8B;
}
.roadmap-phase:nth-child(3) .phase-dot::after {
    background: #B5B5B5;
}

.phase-dot.active {
    box-shadow: 0 0 12px rgba(var(--btc-rgb),0.5);
    animation: glow 2s ease-in-out infinite;
}

.phase-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--btc);
    margin-bottom: 0.3rem;
}

.roadmap-phase:nth-child(2) .phase-label { color: var(--brand-orange); }
.roadmap-phase:nth-child(3) .phase-label { color: #B5B5B5; }

.phase-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.6rem;
    text-align: center;
}

.phase-items {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
}

.phase-item {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.4rem 0.65rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    text-align: center;
    line-height: 1.35;
}

.roadmap-phase:first-child .phase-item {
    border-color: rgba(var(--btc-rgb),0.15);
    background: rgba(var(--btc-rgb),0.04);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOUNDER CARD  -  Team slide
   ═══════════════════════════════════════════════════════════════════════ */
.founder-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    width: 100%;
}

.founder-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(var(--btc-rgb),0.3);
    object-fit: cover;
    flex-shrink: 0;
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.founder-info .founder-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.founder-info .founder-role {
    font-size: 0.85rem;
    color: var(--btc);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.founder-info .founder-bio {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.founder-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.6rem;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    background: rgba(var(--btc-rgb),0.08);
    border: 1px solid rgba(var(--btc-rgb),0.15);
    color: var(--text-secondary);
}

.founder-badge .badge-icon {
    font-size: 0.75rem;
}

.builds-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    width: 100%;
    margin-top: 1rem;
}

.build-card {
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xs);
    text-align: center;
}

.build-card .build-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.build-card .build-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════════
   REVENUE MODEL  -  Business model visual
   ═══════════════════════════════════════════════════════════════════════ */
.revenue-model {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    width: 100%;
}

.rev-card {
    padding: 1.2rem 1.4rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
}

.rev-card .rev-icon {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.rev-card .rev-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}

.rev-card .rev-detail {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.rev-card .rev-highlight {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--btc), var(--brand-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

@media (max-width: 900px) {
    .hero-stat-row { grid-template-columns: repeat(2, 1fr); }
    .moat-row { grid-template-columns: 1fr; }
    .roadmap { grid-template-columns: 1fr; gap: 1.2rem; }
    .roadmap::before { display: none; }
    .revenue-model { grid-template-columns: 1fr; }
    .builds-row { grid-template-columns: 1fr; }
    .founder-card { flex-direction: column; }
    .scenario-table { grid-template-columns: 1.4fr repeat(3, 1fr); font-size: 0.7rem; }
}

/* ── Scenario Table ─────────────────────────────────────────────────── */
.scenario-table {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.scenario-head {
    padding: 0.65rem 0.8rem;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    background: rgba(255,255,255,0.03);
}
.scenario-label-cons { color: var(--text-secondary); }
.scenario-label-base { color: var(--btc); }
.scenario-label-up   { color: var(--brand-orange); }
.scenario-row-label {
    padding: 0.55rem 0.8rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
}
.scenario-cell {
    padding: 0.55rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,0.02);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scenario-base {
    background: rgba(var(--btc-rgb), 0.06);
}
.scenario-result {
    font-size: 1rem;
    font-weight: 800;
}

/* ── Product Screenshots (full-page) ──────────────────────────────────── */
.slide-screenshot {
    padding: 1.5rem 3rem 2rem !important;
}
.screenshot-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-bottom: 0.8rem;
}
.screenshot-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}
.screenshot-full {
    width: 100%;
    flex: 1;
    min-height: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.screenshot-full img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ── Why Now Grid ───────────────────────────────────────────────────── */
.why-now-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}
.why-now-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    transition: background 0.25s, border-color 0.25s;
}
.why-now-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(var(--btc-rgb), 0.28);
}
.why-now-icon {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}
.why-now-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}
.why-now-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.45;
}


/* ── Live Product Grid ──────────────────────────────────────────────── */
.live-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}
.live-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 1rem 1rem 0.9rem;
    transition: background 0.25s, border-color 0.25s;
}
.live-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(var(--btc-rgb), 0.28);
}
.live-icon {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.live-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}
.live-desc {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.45;
}
@media (max-width: 900px) {
    .live-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Gap Comparison Table ───────────────────────────────────────────── */
.gap-table {
    display: grid;
    gap: 0;
}
.gap-header {
    display: grid;
    grid-template-columns: 1fr 60px 60px;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    border-bottom: 2px solid rgba(255,255,255,0.12);
    margin-bottom: 0.2rem;
}
.gap-header span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-align: center;
}
.gap-header span:first-child { text-align: left; }
.gap-row {
    display: grid;
    grid-template-columns: 1fr 60px 60px;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.gap-feature {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.gap-check, .gap-cross {
    text-align: center;
    font-size: 1rem;
}
.gap-check {
    color: #34d399;
}
.gap-cross {
    color: var(--btc);
}
.gap-partial {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-secondary);
}

/* ── TAM/SAM/SOM Concentric Circles ────────────────────────────────── */
.tam-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 300px;
    width: 100%;
}
.tam-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s;
}
.tam-outer {
    width: 290px; height: 290px;
    border: 2px solid rgba(var(--btc-rgb),0.2);
    background: rgba(var(--btc-rgb),0.04);
}
.tam-mid {
    width: 195px; height: 195px;
    border: 2px solid rgba(var(--brand-orange-rgb),0.28);
    background: rgba(var(--brand-orange-rgb),0.06);
}
.tam-inner {
    width: 100px; height: 100px;
    border: 2px solid rgba(var(--btc-rgb),0.45);
    background: rgba(var(--btc-rgb),0.1);
}
.tam-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}
.tam-value {
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
}
.tam-outer .tam-value { font-size: 0.9rem; position: absolute; top: 18px; }
.tam-outer .tam-label { position: absolute; top: 40px; }
.tam-mid .tam-value { font-size: 0.85rem; position: absolute; top: 14px; }
.tam-mid .tam-label { position: absolute; top: 34px; }

/* ── Use of Funds Bar ──────────────────────────────────────────────── */
.funds-bar {
    display: flex;
    width: 100%;
    height: 28px;
    border-radius: 14px;
    overflow: hidden;
    margin: 0.6rem 0;
}
.funds-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}
.funds-legend {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.funds-legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}
.funds-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Market Cascade ────────────────────────────────────────────────── */
.market-cascade {
    display: grid;
    gap: 0.6rem;
    width: 100%;
}
.cascade-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    transition: all 0.3s;
}
.cascade-row:hover {
    border-color: rgba(var(--btc-rgb),0.2);
    background: rgba(var(--btc-rgb),0.03);
}
.cascade-badge {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    min-width: 2.4rem;
    flex-shrink: 0;
}
.cascade-bar {
    height: 8px;
    border-radius: 4px;
    flex-shrink: 0;
    transition: width 0.8s ease;
}
.cascade-info {
    flex: 1;
    min-width: 0;
}
.cascade-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 600;
}
.cascade-growth {
    font-size: 0.72rem;
    color: #34d399;
    font-weight: 600;
    margin-top: 0.15rem;
}
.cascade-value {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
}

/* ── Competitor Table ────────────────────────────────────────────────── */
.comp-table-scroll {
    width: 100%;
    max-width: 1100px;
    overflow-x: clip !important;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.comp-table-scroll::-webkit-scrollbar { height: 0px; }
.comp-table-scroll::-webkit-scrollbar-track { background: transparent; }
.comp-table-scroll::-webkit-scrollbar-thumb { background: transparent; border-radius: 0; }

/* Allow horizontal scroll only when necessary (small screens) */
@media (max-width: 900px) {
    .comp-table-scroll { overflow-x: auto !important; }
    .comp-table-scroll::-webkit-scrollbar { height: 4px; }
    .comp-table-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
}

.competitor-table {
    display: grid;
    grid-template-columns: 1.6fr repeat(7, 1fr);
    gap: 1px;
    width: 100%;
    min-width: 0;
    max-width: 1100px;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    font-size: 0.72rem;
}

.competitor-table--five {
    max-width: 1100px;
    min-width: 780px;
}
.comp-header {
    background: rgba(255,255,255,0.08);
    padding: 0.65rem 0.5rem;
    font-weight: 700;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.comp-header.comp-col-us {
    background: rgba(var(--btc-rgb),0.14);
    color: var(--btc);
}
.comp-header.comp-col-feature {
    text-align: left;
    padding-left: 0.8rem;
}
.comp-feature {
    padding: 0.55rem 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comp-cell {
    padding: 0.55rem 0.4rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    background: rgba(255,255,255,0.02);
}
.comp-cell.comp-us {
    background: rgba(var(--btc-rgb),0.08);
    color: #34d399;
    font-size: 0.95rem;
}
.comp-cell.comp-yes {
    color: rgba(52,211,153,0.7);
    font-size: 0.85rem;
}
.comp-cell.comp-no {
    color: rgba(var(--btc-rgb),0.65);
    font-size: 0.85rem;
}
.comp-cell.comp-partial {
    color: rgba(251,191,36,0.8);
    font-size: 0.68rem;
}
.comp-insight {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 0.55rem;
    padding: 0.55rem 0.75rem;
    background: rgba(var(--btc-rgb),0.06);
    border: 1px solid rgba(var(--btc-rgb),0.15);
    border-radius: var(--radius-sm);
    font-size: 0.68rem;
    color: rgba(237,237,237,0.78);
    line-height: 1.35;
    max-width: 1100px;
    width: 100%;
}
.comp-insight-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.02rem;
}
.comp-insight strong {
    color: var(--btc);
}

/* Competitive slide compact mode to avoid clipping in export */
.slide-competitive .slide-header {
    margin-bottom: 0.75rem;
}
.slide-competitive .slide-subtitle {
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}
.slide-competitive .comp-table-scroll {
    margin-bottom: 0;
}
.slide-competitive .competitor-table {
    font-size: 0.66rem;
}
.slide-competitive .comp-header {
    padding: 0.5rem 0.4rem;
    font-size: 0.62rem;
}
.slide-competitive .comp-feature,
.slide-competitive .comp-cell {
    padding: 0.42rem 0.35rem;
}
.slide-competitive .comp-insight {
    margin-top: 0.4rem;
    padding: 0.45rem 0.65rem;
    font-size: 0.62rem;
    line-height: 1.28;
}
.slide-competitive .comp-insight-icon {
    font-size: 0.82rem;
}

/* ── Merchant Math Table ─────────────────────────────────────────────── */
.merchant-math-table {
    display: grid;
    grid-template-columns: 1fr 0.8fr 0.7fr 0.8fr;
    gap: 0;
    font-size: 0.72rem;
    line-height: 1.35;
}
.mm-head {
    font-weight: 700;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--btc);
    padding: 0.4rem 0.5rem;
    border-bottom: 1px solid rgba(var(--btc-rgb),0.25);
    background: rgba(var(--btc-rgb),0.06);
}
.mm-cell {
    padding: 0.4rem 0.5rem;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mm-label { color: #fff; font-weight: 600; }
.mm-accent { color: var(--brand-orange); font-weight: 700; }
.mm-highlight { background: rgba(var(--btc-rgb),0.08); color: var(--btc) !important; }

/* ── Traction Table ──────────────────────────────────────────────────── */
.traction-table {
    display: grid;
    grid-template-columns: 140px 70px 1fr 1fr 160px;
    gap: 0;
    min-width: 700px;
    font-size: 0.72rem;
    line-height: 1.4;
}
.traction-table--rev {
    grid-template-columns: minmax(110px, auto) minmax(65px, auto) 1fr 1fr 1fr;
    min-width: 660px;
}
.tract-header {
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--btc);
    padding: 0.5rem 0.6rem;
    border-bottom: 1px solid rgba(var(--btc-rgb),0.25);
    background: rgba(var(--btc-rgb),0.06);
    white-space: nowrap;
}
.tract-company {
    padding: 0.55rem 0.6rem;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    overflow: visible;
}
.tract-logo {
    font-size: 0.85rem;
    opacity: 0.7;
}
.tract-cell {
    padding: 0.55rem 0.6rem;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tract-cell small {
    display: block;
    color: rgba(255,255,255,0.4);
    font-size: 0.6rem;
    margin-top: 0.15rem;
}
.tract-highlight {
    color: rgba(255,255,255,0.85);
}
.tract-funding {
    color: var(--brand-orange);
    font-weight: 600;
}

/* ── Moat Cards ──────────────────────────────────────────────────────── */
.moat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 1100px;
}
.moat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: border-color 0.3s, background 0.3s;
}
.moat-card:hover {
    border-color: rgba(var(--btc-rgb),0.28);
    background: rgba(255,255,255,0.06);
}
.moat-card--primary {
    border-color: rgba(var(--btc-rgb),0.28);
    background: rgba(var(--btc-rgb),0.06);
}
.moat-icon {
    font-size: 1.8rem;
    line-height: 1;
}
.moat-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
}
.moat-desc {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    flex: 1;
}
.moat-tag {
    display: inline-block;
    align-self: flex-start;
    margin-top: 0.3rem;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(var(--btc-rgb),0.12);
    color: var(--btc);
    border: 1px solid rgba(var(--btc-rgb),0.22);
}

@media (max-width: 900px) {
    .moat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .moat-card {
        padding: 1rem;
    }
}

@media (max-width: 900px) {
    .competitor-table {
        font-size: 0.6rem;
        grid-template-columns: 1.4fr repeat(7, 1fr);
        min-width: 650px;
    }
    .comp-header, .comp-feature, .comp-cell {
        padding: 0.4rem 0.25rem;
    }
    .comp-header {
        font-size: 0.55rem;
    }
    .slide-competitive .comp-insight {
        font-size: 0.58rem;
        padding: 0.42rem 0.58rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   MOBILE-FIRST RESPONSIVE OVERRIDES
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Tablet / Small Laptop ───────────────────────────────────────────── */
@media (max-width: 900px) {
    /* Keyboard hints irrelevant on touch */
    .keyboard-hint { display: none; }

    /* Scrollbar styling for mobile */
    .slide { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.12) transparent; }
    .slide::-webkit-scrollbar { display: block; width: 3px; }
    .slide::-webkit-scrollbar-track { background: transparent; }
    .slide::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 2px; }

    /* Make dots smaller for many slides */
    .slide-dots { gap: 5px; }
    .slide-dot { width: 6px; height: 6px; }
    .slide-dot.active { width: 18px; }

    /* Counter and buttons smaller */
    .slide-counter { bottom: 1rem; right: 1.2rem; font-size: 0.7rem; }
    .slide-counter .current-num { font-size: 0.95rem; }

    /* Export & fullscreen buttons */
    .export-btn { right: 3.5rem; height: 32px; font-size: 0.65rem; padding: 0 0.7rem; }
    .fullscreen-btn { width: 32px; height: 32px; font-size: 0.8rem; }

    /* Competitor table: horizontal scroll wrapper */
    .competitor-table {
        min-width: 650px;
    }

    /* Screenshot slides */
    .slide-screenshot { padding: 1.2rem 1.5rem 1.5rem !important; }
    .screenshot-full { flex: 0 1 auto; height: auto; }
    .screenshot-full img { height: auto; }
}

/* ── Phone landscape / large phone ───────────────────────────────────── */
@media (max-width: 600px) {
    .slide { padding: 1.8rem 1.2rem 3.5rem; justify-content: flex-start; overflow-y: auto; }
    .slide > * { flex-shrink: 0; }
    .slide-content .slide-body { flex: 0 0 auto; }
    .slide-screenshot { padding: 1rem 1rem 3rem !important; }

    /* Title slide */
    .slide-title h1 { font-size: clamp(1.6rem, 6vw, 2.5rem); margin-bottom: 0.6rem; }
    .slide-title .subtitle { font-size: 0.9rem; margin-bottom: 1.2rem; }

    /* Content slides */
    .slide-content h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
    .mini-subtitle { font-size: 0.85rem; margin-bottom: 1rem; }
    .slide-content .slide-header { margin-bottom: 1rem; }

    /* Brand badge */
    .brand-badge { padding: 0.4rem 0.8rem 0.4rem 0.4rem; gap: 0.5rem; margin-bottom: 1rem; }
    .brand-badge__icon { width: 32px; height: 32px; border-radius: 8px; }
    .brand-badge__text { font-size: 0.8rem; }

    /* Metric chips */
    .metric-chip { font-size: 0.7rem; padding: 0.45rem 0.75rem; }

    /* Two-col stacks */
    .two-col { gap: 1rem; }

    /* Diagram boxes */
    .diagram-box { padding: 1rem !important; }

    /* Flow diagrams  -  smaller step boxes */
    .flow-step .step-box { min-width: 65px; padding: 0.5rem 0.5rem; }
    .flow-step .step-label { font-size: 0.65rem !important; }
    .flow-arrow { font-size: 0.9rem; }
    .flow-diagram { gap: 0.25rem; }

    /* ONE tagline */
    .one-tagline { font-size: 0.82rem !important; }

    /* Slide subtitle */
    .slide-subtitle { font-size: 0.82rem; }
    .data-desc { font-size: 0.7rem; }

    /* Moat cards  -  override inline styles */
    .moat-card { padding: 0.9rem !important; }
    .moat-icon { font-size: 1.2rem !important; }
    .moat-grid { grid-template-columns: 1fr; }

    /* Gap table (Problem slide) */
    .gap-header { grid-template-columns: 1fr 45px 45px; gap: 0.3rem; padding: 0.5rem 0.6rem; }
    .gap-header span { font-size: 0.6rem; }
    .gap-row { grid-template-columns: 1fr 45px 45px; gap: 0.3rem; padding: 0.4rem 0.6rem; }
    .gap-feature { font-size: 0.72rem; }
    .gap-check, .gap-cross { font-size: 0.85rem; }

    /* Matrix table (Solution slide) */
    .matrix-table { font-size: 0.65rem; }
    .matrix-head, .matrix-cell { padding: 0.4rem 0.4rem; font-size: 0.65rem; }

    /* Why-now + live grids */
    .why-now-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .why-now-card { padding: 0.75rem; }
    .why-now-icon { font-size: 1.1rem; margin-bottom: 0.3rem; }
    .why-now-title { font-size: 0.75rem; }
    .why-now-desc { font-size: 0.65rem; }

    .live-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .live-card { padding: 0.75rem; }
    .live-icon { font-size: 1.1rem; margin-bottom: 0.3rem; }
    .live-title { font-size: 0.75rem; }
    .live-desc { font-size: 0.65rem; }

    /* Revenue model */
    .revenue-model { gap: 0.8rem; }
    .rev-card { padding: 0.9rem 1rem; }
    .rev-card .rev-highlight { font-size: 1.1rem; }
    .rev-card .rev-title { font-size: 0.85rem; }
    .rev-card .rev-detail { font-size: 0.75rem; }

    /* Scenario table */
    .scenario-table { font-size: 0.65rem; grid-template-columns: 1.2fr repeat(3, 1fr); }
    .scenario-head { padding: 0.45rem 0.5rem; font-size: 0.6rem; }
    .scenario-row-label { padding: 0.4rem 0.5rem; font-size: 0.68rem; }
    .scenario-cell { padding: 0.4rem 0.4rem; font-size: 0.72rem; }
    .scenario-cell.scenario-result { font-size: 0.85rem; }

    /* Roadmap */
    .roadmap { gap: 0; }
    .phase-title { font-size: 0.82rem; }
    .phase-item { font-size: 0.68rem; padding: 0.3rem 0.5rem; }
    .phase-label { font-size: 0.65rem; }

    /* Funds bar */
    .funds-segment { font-size: 0.55rem; }
    .funds-legend { gap: 0.6rem; }
    .funds-legend-item { font-size: 0.65rem; }

    /* Founder card */
    .founder-card { padding: 1.2rem; gap: 1rem; }
    .founder-avatar { width: 60px; height: 60px; }
    .founder-info .founder-name { font-size: 1.05rem; }
    .founder-info .founder-bio { font-size: 0.75rem; }
    .founder-badge { font-size: 0.6rem; padding: 0.25rem 0.5rem; }

    /* Builds row */
    .builds-row { gap: 0.5rem; }
    .build-card { padding: 0.6rem 0.75rem; }
    .build-card .build-name { font-size: 0.75rem; }
    .build-card .build-desc { font-size: 0.65rem; }

    /* Moat cards on Moats slide */
    .moat-grid { gap: 0.6rem; }
    .moat-card { padding: 0.9rem; }
    .moat-icon { font-size: 1.4rem; }
    .moat-title { font-size: 0.88rem; }
    .moat-desc { font-size: 0.68rem; }
    .moat-tag { font-size: 0.55rem; }

    /* Competitor table scroll container */
    .competitor-table { min-width: 550px; }

    /* Market cascade */
    .cascade-row { padding: 0.6rem 0.8rem; gap: 0.6rem; flex-wrap: wrap; }
    .cascade-bar { flex-shrink: 1; max-width: 100% !important; width: auto !important; }
    .cascade-value { font-size: 1.1rem; }
    .cascade-label { font-size: 0.75rem; }
    .cascade-growth { font-size: 0.65rem; }

    /* TAM circles */
    .tam-visual { height: 220px; }
    .tam-outer { width: 210px; height: 210px; }
    .tam-mid { width: 140px; height: 140px; }
    .tam-inner { width: 75px; height: 75px; }

    /* Thank you / Ask slide */
    .slide-thankyou h2 { font-size: clamp(1.6rem, 6vw, 2.8rem); }
    .slide-thankyou p { font-size: 0.95rem; }
    .slide-thankyou .link-btn { font-size: 0.8rem; padding: 0.55rem 1.1rem; }

    /* Highlight box */
    .highlight-box { padding: 0.9rem 1rem; }
    .highlight-box p { font-size: 0.82rem; }

    /* Navigation bottom area */
    .slide-dots { bottom: 0.8rem; gap: 4px; }
    .slide-dot { width: 5px; height: 5px; }
    .slide-dot.active { width: 14px; }
    .slide-counter { bottom: 0.6rem; right: 0.8rem; font-size: 0.65rem; }
    .slide-counter .current-num { font-size: 0.85rem; }

    /* Top controls */
    .export-btn { right: 3rem; height: 30px; font-size: 0.6rem; padding: 0 0.6rem; top: 0.6rem; }
    .fullscreen-btn { width: 30px; height: 30px; font-size: 0.75rem; top: 0.6rem; right: 0.8rem; }

    /* Comp insight */
    .comp-insight { font-size: 0.62rem; padding: 0.5rem 0.65rem; line-height: 1.3; }

    /* Traction table */
    .traction-table { min-width: 600px; font-size: 0.65rem; }
    .tract-header { font-size: 0.58rem; padding: 0.4rem 0.5rem; }
    .tract-company, .tract-cell { padding: 0.45rem 0.5rem; }
    .tract-cell small { font-size: 0.52rem; }

    /* Merchant math table */
    .merchant-math-table { font-size: 0.65rem; }
    .mm-head { font-size: 0.55rem; padding: 0.35rem 0.4rem; }
    .mm-cell { padding: 0.35rem 0.4rem; }
}

/* ── Small phones (≤ 420px) ──────────────────────────────────────────── */
@media (max-width: 420px) {
    .slide { padding: 1.5rem 0.8rem 3.2rem; justify-content: flex-start; overflow-y: auto; }
    .slide > * { flex-shrink: 0; }
    .slide-screenshot { padding: 0.8rem 0.6rem 2.5rem !important; }

    .slide-title h1 { font-size: 1.4rem; }
    .slide-title .subtitle { font-size: 0.8rem; }

    .slide-content h2 { font-size: 1.3rem; }
    .mini-subtitle { font-size: 0.78rem; }

    .eyebrow { font-size: 0.65rem; letter-spacing: 0.1em; }

    /* ONE tagline */
    .one-tagline { font-size: 0.72rem !important; }
    .slide-subtitle { font-size: 0.75rem; }
    .data-desc { font-size: 0.65rem; }

    /* Flow arrows hide on tiny screens */
    .flow-arrow { display: none; }
    .flow-diagram { flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
    .flow-step .step-box { min-width: 55px; }
    .flow-step .step-label { font-size: 0.6rem !important; }

    /* Why-now and live go single column */
    .why-now-grid { grid-template-columns: 1fr; }
    .live-grid { grid-template-columns: 1fr; }

    /* Scenario table tighter */
    .scenario-table { grid-template-columns: 1fr repeat(3, 0.8fr); }
    .scenario-cell { font-size: 0.65rem; padding: 0.35rem 0.3rem; }
    .scenario-cell.scenario-result { font-size: 0.78rem; }

    /* Gap table even tighter */
    .gap-header, .gap-row { grid-template-columns: 1fr 38px 38px; }
    .gap-feature { font-size: 0.65rem; }

    /* Moat cards on solution slide  -  inline styles override, but moat-row generic */
    .moat-row { gap: 0.5rem; }

    /* Market cascade  -  hide bar, stack vertically */
    .cascade-bar { display: none; }
    .cascade-row { gap: 0.4rem; }
    .cascade-badge { min-width: auto; }
    .cascade-value { font-size: 1rem; }
    .cascade-label { font-size: 0.7rem; }
    .cascade-growth { font-size: 0.6rem; }

    /* Author badge */
    .author-badge { font-size: 0.72rem; padding: 0.4rem 1rem; }

    /* Slide-thankyou */
    .slide-thankyou h2 { font-size: 1.3rem; }
    .slide-thankyou p { font-size: 0.82rem; }
    .slide-thankyou .link-btn { font-size: 0.72rem; padding: 0.45rem 0.9rem; }

    /* Founder  -  fully stacked */
    .founder-avatar { width: 50px; height: 50px; }
    .founder-info .founder-name { font-size: 0.95rem; }
    .founder-badge { font-size: 0.55rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   LARGE SCREENS (≥ 1400px)
   Scale up content, fonts, tables for bigger monitors
   ═══════════════════════════════════════════════════════════════════════ */
@media (min-width: 1400px) {
    .slide { padding: 4rem 8rem; }

    /* Title slide */
    .slide-title h1 { font-size: 4.5rem; }
    .slide-title .subtitle { font-size: 1.5rem; max-width: 800px; }
    .metric-chip { font-size: 0.95rem; padding: 0.75rem 1.2rem; }
    .metric-strip { max-width: 1100px; }
    .eyebrow { font-size: 0.85rem; }
    .author-badge { font-size: 1rem; }
    .brand-badge__text { font-size: 1.05rem; }
    .brand-badge__icon { width: 48px; height: 48px; }

    /* Content slides */
    .slide-content h2 { font-size: 3.2rem; }
    .slide-content .slide-text p { font-size: 1.25rem; }
    .mini-subtitle { font-size: 1.2rem; max-width: 1100px; }
    .slide-content .slide-number { font-size: 0.8rem; padding: 0.3rem 0.8rem; }

    /* Two-col layout */
    .two-col { gap: 4rem; }

    /* Data cards */
    .data-card { padding: 1.5rem 1.5rem; min-height: 170px; }
    .data-icon { width: 50px; height: 50px; font-size: 1.5rem; }
    .data-value { font-size: 2rem; }
    .data-label { font-size: 0.85rem; }
    .data-desc { font-size: 0.85rem; }

    /* Tables */
    .gap-header, .gap-row { font-size: 0.95rem; }
    .gap-feature { font-size: 0.95rem; }
    .gap-check, .gap-cross { font-size: 1.3rem; }
    .box-title { font-size: 0.88rem; }
    .source-note { font-size: 0.85rem; }

    /* Competitor table */
    .comp-table-scroll { max-width: 1400px; }
    .competitor-table { max-width: 1400px; font-size: 0.85rem; }
    .comp-header { font-size: 0.78rem; padding: 0.8rem 0.6rem; }
    .comp-feature { font-size: 0.85rem; padding: 0.7rem 1rem; }
    .comp-cell { padding: 0.7rem 0.5rem; }
    .comp-cell.comp-us { font-size: 1.1rem; }
    .comp-cell.comp-yes, .comp-cell.comp-no { font-size: 1rem; }
    .comp-cell.comp-partial { font-size: 0.8rem; }
    .comp-insight { max-width: 1400px; font-size: 0.76rem; padding: 0.6rem 0.85rem; line-height: 1.35; }

    /* Moat grid */
    .moat-grid { max-width: 1400px; }
    .moat-card { padding: 1.5rem 1.2rem; }
    .moat-card h3 { font-size: 1.1rem; }
    .moat-desc { font-size: 0.9rem; }
    .moat-badge { font-size: 0.68rem; }
    .moat-icon { font-size: 1.8rem; }

    /* Scenario / revenue table */
    .scenario-table { font-size: 0.85rem; }
    .scenario-header { font-size: 0.75rem; padding: 0.6rem 0.7rem; }
    .scenario-cell { font-size: 0.85rem; padding: 0.55rem 0.7rem; }
    .scenario-cell.scenario-result { font-size: 1.15rem; }

    /* Traction table */
    .traction-table { font-size: 0.85rem; min-width: 800px; }
    .traction-table--rev { min-width: 760px; }
    .tract-header { font-size: 0.78rem; padding: 0.6rem 0.7rem; }
    .tract-company { font-size: 0.9rem; padding: 0.65rem 0.7rem; }
    .tract-cell { font-size: 0.85rem; padding: 0.65rem 0.7rem; }
    .tract-logo { font-size: 1rem; }

    /* Merchant math table */
    .merchant-math-table { font-size: 0.85rem; }
    .mm-head { font-size: 0.72rem; padding: 0.5rem 0.6rem; }
    .mm-cell { padding: 0.5rem 0.6rem; }

    /* Market cascade */
    .cascade-value { font-size: 1.6rem; }
    .cascade-label { font-size: 0.95rem; }
    .cascade-growth { font-size: 0.82rem; }

    /* Highlight box */
    .highlight-box { padding: 1.5rem 1.8rem; }
    .highlight-box .tag { font-size: 0.72rem; }
    .highlight-box p { font-size: 0.95rem; }

    /* Why now / live grids */
    .why-now-card, .live-card { padding: 1.3rem; }
    .why-now-card h3, .live-card h3 { font-size: 1.05rem; }
    .why-now-card p, .live-card p { font-size: 0.88rem; }

    /* Roadmap */
    .phase-label { font-size: 0.95rem; }
    .phase-item { font-size: 0.88rem; }

    /* Founder */
    .founder-avatar { width: 85px; height: 85px; }
    .founder-info .founder-name { font-size: 1.35rem; }
    .founder-info .founder-role { font-size: 0.95rem; }
    .founder-badge { font-size: 0.72rem; padding: 0.3rem 0.7rem; }

    /* Thank you */
    .slide-thankyou h2 { font-size: 3.5rem; }
    .slide-thankyou p { font-size: 1.2rem; }
    .slide-thankyou .link-btn { font-size: 0.95rem; padding: 0.7rem 1.5rem; }

    /* Flow diagram */
    .step-label { font-size: 0.88rem; }
    .flow-arrow { font-size: 1.3rem; }

    /* Matrix table */
    .matrix-head { font-size: 0.78rem; padding: 0.7rem 0.6rem; }
    .matrix-cell { font-size: 0.85rem; padding: 0.65rem 0.6rem; }
    .matrix-win { font-size: 0.85rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   EXTRA LARGE SCREENS (≥ 1800px)
   Further scale for ultrawide / 4K monitors
   ═══════════════════════════════════════════════════════════════════════ */
@media (min-width: 1800px) {
    .slide { padding: 5rem 10rem; }

    /* Title slide */
    .slide-title h1 { font-size: 5.5rem; }
    .slide-title .subtitle { font-size: 1.7rem; max-width: 950px; }
    .metric-chip { font-size: 1.05rem; padding: 0.85rem 1.4rem; }
    .metric-strip { max-width: 1300px; }
    .eyebrow { font-size: 0.95rem; }
    .author-badge { font-size: 1.1rem; }

    /* Content slides */
    .slide-content h2 { font-size: 3.8rem; }
    .slide-content .slide-text p { font-size: 1.4rem; }
    .mini-subtitle { font-size: 1.35rem; max-width: 1400px; }

    /* Tables grow wider */
    .comp-table-scroll { max-width: 1700px; }
    .competitor-table { max-width: 1700px; font-size: 0.95rem; }
    .comp-header { font-size: 0.88rem; }
    .comp-feature { font-size: 0.95rem; }
    .comp-insight { max-width: 1700px; font-size: 0.82rem; padding: 0.65rem 0.9rem; line-height: 1.35; }

    .moat-grid { max-width: 1700px; gap: 1.5rem; }
    .moat-card { padding: 1.8rem 1.5rem; }
    .moat-card h3 { font-size: 1.25rem; }
    .moat-desc { font-size: 1rem; }

    /* Traction table */
    .traction-table { font-size: 0.95rem; min-width: 900px; }
    .tract-header { font-size: 0.85rem; }
    .tract-company { font-size: 1rem; }
    .tract-cell { font-size: 0.95rem; }

    /* Scenario table */
    .scenario-table { font-size: 0.95rem; }
    .scenario-header { font-size: 0.82rem; }
    .scenario-cell { font-size: 0.95rem; }
    .scenario-cell.scenario-result { font-size: 1.3rem; }

    /* Merchant math */
    .merchant-math-table { font-size: 0.95rem; }
    .mm-head { font-size: 0.8rem; }

    /* Data cards */
    .data-card { padding: 1.8rem; min-height: 190px; }
    .data-value { font-size: 2.3rem; }
    .data-label { font-size: 0.95rem; }
    .data-desc { font-size: 0.92rem; }

    /* Market cascade */
    .cascade-value { font-size: 1.9rem; }
    .cascade-label { font-size: 1.05rem; }

    /* Gap table */
    .gap-header, .gap-row { font-size: 1.05rem; }
    .gap-feature { font-size: 1.05rem; }
    .gap-check, .gap-cross { font-size: 1.5rem; }
    .box-title { font-size: 0.95rem; }
    .source-note { font-size: 0.92rem; }

    /* Highlight box */
    .highlight-box p { font-size: 1.05rem; }

    /* Founder */
    .founder-avatar { width: 95px; height: 95px; }
    .founder-info .founder-name { font-size: 1.5rem; }
    .founder-info .founder-role { font-size: 1.05rem; }

    /* Thank you */
    .slide-thankyou h2 { font-size: 4.2rem; }
    .slide-thankyou p { font-size: 1.35rem; }

    /* Flow diagram */
    .step-label { font-size: 1rem; }
    .matrix-head { font-size: 0.88rem; }
    .matrix-cell { font-size: 0.95rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SURVEY / USER VOICES — neo “floating clouds” (not a chat transcript)
   ═══════════════════════════════════════════════════════════════════════ */
.slide-chat-survey {
    justify-content: flex-start;
}

.slide-chat-survey .slide-header {
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.slide-chat-survey .slide-header h2 {
    font-size: clamp(1.28rem, 2.6vw, 2.25rem);
}

.diagram-box.neo-cloud-panel {
    padding: 0.65rem !important;
    padding-top: calc(0.65rem + 3px) !important;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    max-height: min(460px, calc(100vh - 220px));
    overflow: hidden;
    background: rgba(14, 14, 22, 0.55);
    border-color: rgba(255, 255, 255, 0.1);
}

.neo-cloud-board {
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0.75rem 0.85rem 0.85rem;
    border-radius: calc(var(--radius-sm) + 2px);
    background-color: #282836;
    background-image: radial-gradient(rgba(210, 208, 255, 0.11) 1.2px, transparent 1.2px);
    background-size: 11px 11px;
    border: 2px solid rgba(12, 12, 14, 0.85);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.48rem;
}

.neo-cloud-block {
    display: flex;
    align-items: flex-end;
    gap: 0.55rem;
    width: 100%;
}

.neo-cloud-block--left {
    justify-content: flex-start;
    padding-right: clamp(0.5rem, 8vw, 4.5rem);
}

.neo-cloud-block--right {
    flex-direction: row-reverse;
    justify-content: flex-start;
    padding-left: clamp(0.5rem, 7vw, 3.75rem);
}

.neo-face {
    flex-shrink: 0;
    line-height: 0;
}

.neo-face svg {
    display: block;
    filter: drop-shadow(-5px 7px 0 rgba(154, 134, 255, 0.55));
}

.neo-cloud {
    position: relative;
    min-width: 0;
    max-width: min(560px, 82%);
    padding: 0.52rem 0.85rem 0.48rem;
    font-size: 0.66rem;
    line-height: 1.42;
    border: 2px solid #0c0c0c;
}

.neo-cloud p {
    margin: 0;
}

.neo-cloud--paper {
    background: linear-gradient(180deg, #f0f0fa 0%, #e4e4ef 100%);
    color: #141418;
    border-color: #0c0c0c;
    border-radius: 26px 26px 26px 8px;
    box-shadow: -7px 9px 0 0 rgba(var(--brand-orange-rgb), 1);
}

.neo-cloud--paper strong {
    color: var(--btc);
    font-weight: 800;
}

.neo-cloud--ink {
    background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
    color: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.92);
    border-radius: 26px 26px 8px 26px;
    box-shadow: -7px 9px 0 0 rgba(var(--btc-rgb), 0.95);
}

.neo-cloud--ink strong {
    color: #fff;
    font-weight: 800;
}

.neo-by {
    display: block;
    margin-top: 0.38rem;
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.neo-cloud--paper .neo-by {
    color: #4a4a55;
}

.neo-cloud--ink .neo-by {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-height: 860px) {
    .diagram-box.neo-cloud-panel {
        max-height: min(360px, calc(100vh - 190px));
    }
    .neo-cloud-board {
        padding: 0.55rem 0.65rem 0.65rem;
        gap: 0.36rem;
    }
    .neo-cloud {
        font-size: 0.59rem;
        padding: 0.42rem 0.72rem 0.38rem;
    }
    .neo-face svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 900px) {
    .slide-chat-survey .slide-header h2 {
        font-size: clamp(1.12rem, 4.2vw, 1.65rem);
    }
    .neo-cloud {
        font-size: 0.59rem;
        max-width: 88%;
    }
    .neo-cloud-block--left {
        padding-right: 0.25rem;
    }
    .neo-cloud-block--right {
        padding-left: 0.25rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE SAFETY NETS
   Prevent clipping on short heights and overscaling on big screens
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-height: 860px) {
    .slide {
        padding-top: 1.8rem;
        padding-bottom: 2.8rem;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .slide-content {
        padding-top: 1.8rem;
        padding-bottom: 2.4rem;
    }
    .slide-content h2 {
        font-size: clamp(1.5rem, 3vw, 2.2rem);
    }
    .mini-subtitle,
    .slide-subtitle {
        font-size: 0.88rem;
    }
    .diagram-box {
        padding: 0.95rem;
    }
}

@media (min-width: 1400px) and (max-height: 980px) {
    .slide {
        padding: 2.8rem 4.2rem 3.2rem;
    }
    .slide-content h2 {
        font-size: clamp(2rem, 2.8vw, 2.9rem);
    }
    .mini-subtitle {
        font-size: 1rem;
    }
}

@media (min-width: 1600px) {
    .slide-content { max-width: 100%; }
}

@media (min-width: 1800px) {
    .slide {
        padding: 3.8rem 6.5rem;
    }
    .slide-content h2 {
        font-size: clamp(2.3rem, 3vw, 3.3rem);
    }
    .slide-title h1 {
        font-size: clamp(3.2rem, 4.7vw, 5rem);
    }
    .mini-subtitle {
        font-size: 1.15rem;
        max-width: 1200px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   Investor deck — Neptor brand (same tokens as product UI)
   ═══════════════════════════════════════════════════════════════════════ */

.investor-deck .slide {
    overflow: hidden;
    justify-content: safe center;
    align-items: center;
}

.investor-deck .slide.investor-slide {
    justify-content: safe center;
}

.investor-deck .slide.investor-traction {
    overflow-x: hidden;
    overflow-y: auto;
    justify-content: safe center;
    align-items: center;
}

.investor-deck {
    /* Inherit :root Neptor palette — do not override with alternate cyan theme */
}

.investor-deck .slide {
    background:
        radial-gradient(ellipse at 70% 15%, rgba(var(--btc-rgb), 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(var(--brand-orange-rgb), 0.05) 0%, transparent 50%),
        linear-gradient(165deg, #0A0A0A 0%, #0d0d0d 35%, #111111 70%, #141414 100%);
}

.investor-slide {
    justify-content: safe center;
    align-items: stretch;
    padding: clamp(2.75rem, 4.5vh, 3.5rem) 4rem;
    overflow: hidden;
}

.investor-slide.investor-team {
    overflow-y: auto;
    justify-content: safe center;
}

.investor-team .investor-header {
    margin-bottom: 2.2rem;
}

.investor-slide > * {
    width: 100%;
    max-width: min(1500px, 100%);
    min-width: 0;
}

.investor-slide::before,
.investor-slide::after {
    display: none;
}

.investor-slide .grid-overlay {
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 50% 45%, black 0%, transparent 78%);
}

.investor-slide h1,
.investor-slide h2,
.investor-slide h3,
.investor-slide .hero-lead,
.investor-slide .close-kicker,
.investor-slide .comparison-label,
.investor-slide .thesis-kicker,
.investor-slide .plan-kicker,
.investor-slide .founder-label,
.investor-slide .deck-stage {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.deck-topline {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.4rem;
}

.deck-stage {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.investor-hero {
    justify-content: safe center;
    align-items: center;
    text-align: center;
}

.investor-hero .deck-topline {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-bottom: 1.05rem;
}

.investor-hero .deck-stage {
    margin-top: 0.1rem;
}

.hero-statement {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-primary);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-align: center;
}

.hero-kicker-line {
    display: block;
    margin-bottom: 0.35rem;
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--text-secondary);
}

.hero-title-line {
    display: block;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    line-height: 1.05;
    font-weight: 800;
}

.hero-accent {
    background: linear-gradient(135deg, var(--btc) 0%, var(--brand-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-statement span.hero-product-line {
    background: none;
    -webkit-text-fill-color: var(--text-secondary);
}

.hero-product-line {
    display: block;
    margin-top: 0.45rem;
    font-size: clamp(1.05rem, 1.8vw, 1.4rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-secondary);
    -webkit-text-fill-color: var(--text-secondary);
    background: none;
}

.hero-session {
    max-width: 40rem;
    margin: 0.7rem auto 0;
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.4vw, 1.12rem);
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.hero-session strong {
    display: block;
    margin-bottom: 0.12rem;
    color: var(--text-primary);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    font-weight: 800;
}

.hero-logos {
    width: min(560px, 100%);
    margin: 1.05rem auto 0;
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 1.75rem;
}

.hero-logo {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.hero-logo img {
    display: block;
    object-fit: contain;
    background: none;
}

.hero-logo--cgc img,
.hero-logo--gsoc img,
.hero-logo--sob img {
    width: 44px;
    height: 44px;
}

.hero-logo--cgc img {
    width: auto;
    height: 48px;
}

.hero-logo figcaption {
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.25;
    white-space: nowrap;
}

.hero-stack {
    width: min(1180px, 100%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.1rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-stack-item {
    font-size: clamp(0.72rem, 1.2vw, 0.88rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--btc-rgb), 0.35);
    background: rgba(var(--btc-rgb), 0.1);
}

.hero-strip {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-strip strong {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.85rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-top: 3px solid rgba(var(--btc-rgb), 0.55);
    color: var(--text-primary);
    font-size: clamp(0.88rem, 1.2vw, 1.05rem);
    line-height: 1.2;
}

.hero-subtitle {
    max-width: 720px;
    margin-top: 1.35rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.35vw, 1.2rem);
    line-height: 1.5;
    text-align: center;
}

.comparison-shell {
    width: 100%;
    max-width: min(1240px, 100%);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: rgba(8, 8, 8, 0.72);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.investor-before-after {
    justify-content: center;
    align-items: center;
}

.comparison-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: stretch;
    height: 100%;
    padding: clamp(1.9rem, 3vw, 2.85rem);
    min-width: 0;
    text-align: left;
}

.comparison-side--before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.018) 100%),
        rgba(6, 6, 6, 0.42);
}

.comparison-side--after {
    background:
        radial-gradient(circle at 10% 0%, rgba(var(--brand-orange-rgb), 0.12), transparent 36%),
        linear-gradient(180deg, rgba(var(--brand-orange-rgb), 0.08) 0%, rgba(var(--brand-orange-rgb), 0.025) 100%),
        rgba(10, 8, 6, 0.62);
    border-left: 3px solid rgba(var(--brand-orange-rgb), 0.95);
}

.comparison-label {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 0.85rem;
    padding: 0.32rem 0.7rem;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    flex-shrink: 0;
}

.comparison-label--after {
    color: var(--brand-orange);
    background: rgba(var(--brand-orange-rgb), 0.12);
    border-color: rgba(var(--brand-orange-rgb), 0.32);
}

.comparison-side h2 {
    max-width: 100%;
    min-height: 2.45em;
    color: var(--text-primary);
    font-size: clamp(1.55rem, 2.45vw, 2.25rem);
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 1.35rem;
    letter-spacing: 0;
    flex-shrink: 0;
}

.comparison-muted {
    color: var(--text-secondary);
    font-weight: 700;
}

.comparison-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 3.25rem;
    padding: 0.75rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--radius-sm) - 2px);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-secondary);
    font-size: clamp(0.84rem, 1.05vw, 0.98rem);
    line-height: 1.32;
}

.comparison-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.28);
}

.comparison-side--after .comparison-list li {
    display: grid;
    grid-template-columns: 8px minmax(9.5rem, 0.9fr) minmax(0, 1.15fr);
    column-gap: 0.85rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.24);
    border-color: rgba(var(--brand-orange-rgb), 0.18);
}

.comparison-side--after .comparison-list li::before {
    grid-column: 1;
    background: var(--brand-orange);
    box-shadow: 0 0 10px rgba(var(--brand-orange-rgb), 0.55);
}

.comparison-side--after .comparison-list strong {
    grid-column: 2;
    color: var(--brand-orange);
    font-size: 0.98em;
    line-height: 1.2;
}

.comparison-side--after .comparison-list span {
    grid-column: 3;
    color: var(--text-secondary);
    line-height: 1.28;
}

.investor-before-after .team-accent {
    color: var(--brand-orange);
}

.investor-header {
    width: 100%;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.investor-header .slide-number {
    display: inline-block;
    margin-bottom: 0.45rem;
    padding: 0.28rem 0.6rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--btc);
    background: rgba(var(--btc-rgb), 0.1);
    border: 1px solid rgba(var(--btc-rgb), 0.25);
    border-radius: 999px;
}

.investor-header h2 {
    max-width: 960px;
    color: var(--text-primary);
    font-size: clamp(1.45rem, 2.6vw, 2.4rem);
    line-height: 1.15;
    font-weight: 700;
}

.team-accent {
    color: var(--btc);
}

.thesis-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1rem;
}

.thesis-card,
.capability-lead,
.capability-cell,
.economics-block,
.plan-ask,
.plan-step,
.close-card,
.founder-panel {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border-radius: var(--radius-sm);
    min-width: 0;
}

.thesis-card {
    min-height: clamp(13.5rem, 26vh, 17rem);
    padding: clamp(1.25rem, 2vw, 1.65rem) clamp(1.35rem, 2.25vw, 1.9rem);
    display: grid;
    grid-template-rows: auto auto auto;
    align-content: start;
    row-gap: 0.9rem;
}

.thesis-card--signal {
    background: linear-gradient(180deg, rgba(var(--brand-orange-rgb), 0.16), rgba(255,255,255,0.06));
    border-color: rgba(var(--brand-orange-rgb), 0.32);
}

.thesis-kicker,
.plan-kicker,
.founder-label {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 0.9rem;
    padding: 0.35rem 0.55rem;
    background: rgba(var(--btc-rgb), 0.10);
    border: 1px solid rgba(var(--btc-rgb), 0.22);
    color: var(--btc);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.thesis-kicker {
    margin-bottom: 0;
    width: fit-content;
    max-width: max-content;
    white-space: nowrap;
    padding: 0.36rem 0.72rem;
}

.thesis-card h3,
.capability-lead strong,
.capability-cell strong,
.economics-block strong,
.plan-ask strong,
.plan-step strong,
.founder-panel h3,
.close-card strong {
    color: var(--text-primary);
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    line-height: 1.15;
    font-weight: 700;
}

.thesis-card h3 {
    align-self: start;
    max-width: 95%;
    margin: 0;
}

.thesis-card p,
.capability-cell p,
.economics-block p,
.plan-ask p,
.plan-step p,
.founder-panel p,
.close-card p {
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

.thesis-card p {
    align-self: start;
    margin-top: 0.15rem;
    max-width: 96%;
}

.capability-board {
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.investor-capabilities .capability-board {
    max-width: min(1240px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.investor-capabilities .investor-header--center h2 {
    max-width: min(920px, 100%);
}

.investor-capabilities .capability-subline {
    margin-left: auto;
    margin-right: auto;
}

.investor-capabilities .capability-lead {
    grid-row: span 3;
}

.capability-subline {
    max-width: 720px;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: clamp(0.86rem, 1.1vw, 0.98rem);
    line-height: 1.5;
}

.capability-tag {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 0.45rem;
    padding: 0.22rem 0.55rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-orange);
    background: rgba(var(--brand-orange-rgb), 0.12);
    border: 1px solid rgba(var(--brand-orange-rgb), 0.28);
    border-radius: 999px;
}

.capability-lead .capability-tag {
    color: var(--btc);
    background: rgba(var(--btc-rgb), 0.1);
    border-color: rgba(var(--btc-rgb), 0.25);
}

.capability-lead {
    min-height: 0;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 1.35rem 1.4rem;
    background: linear-gradient(180deg, rgba(var(--btc-rgb), 0.18), rgba(255,255,255,0.06));
    border-color: rgba(var(--btc-rgb), 0.32);
}

.capability-lead-logo {
    width: clamp(84px, 9vw, 120px);
    height: clamp(84px, 9vw, 120px);
    margin: auto auto clamp(1rem, 2vh, 1.5rem);
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.14);
    flex-shrink: 0;
}

.capability-lead-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-top: auto;
}

.capability-lead .capability-tag {
    align-self: center;
}

.capability-lead strong {
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    line-height: 1.08;
}

.capability-lead-copy > span:not(.capability-tag),
.capability-lead > span:not(.capability-tag) {
    margin-top: 0.65rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.capability-cell {
    min-height: 0;
    padding: 1.15rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.investor-slide.investor-proof {
    justify-content: safe center;
    overflow-x: hidden;
    overflow-y: auto;
}

.investor-proof > * {
    flex-shrink: 0;
}

.investor-proof .investor-header {
    margin-bottom: 0.65rem;
}

.investor-proof .investor-header h2 {
    font-size: clamp(1.15rem, 1.9vw, 1.55rem);
    line-height: 1.22;
    max-width: 100%;
}

.investor-proof .investor-header h1 {
    max-width: min(1320px, 100%);
    color: var(--text-primary);
    font-size: clamp(2.1rem, 4.2vw, 4rem);
    line-height: 1.04;
    font-weight: 850;
    letter-spacing: 0;
    margin: 0;
}

.wallcard-headline-subline {
    max-width: 980px;
    margin-top: 0.55rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 1.25vw, 1.12rem);
    line-height: 1.45;
}

.investor-proof-wallcard .investor-header h2 {
    max-width: min(1180px, 100%);
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 3.8vw, 3.5rem);
    line-height: 1.06;
    font-weight: 850;
}

/* Screenshot on top, full-width copy below — nothing clipped in a side column */
.investor-proof .proof-frame {
    width: 100%;
    max-width: min(1160px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

.investor-proof .proof-screen.neptor-product-frame {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.investor-proof .proof-screen.neptor-product-frame img {
    width: 100%;
    height: auto;
    max-height: min(58vh, 620px);
    object-fit: contain;
    object-position: top center;
    background: #080808;
}

.investor-proof .proof-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--btc);
    border-radius: var(--radius-sm);
    width: 100%;
    flex-shrink: 0;
    overflow: visible;
}

.investor-proof .proof-copy strong {
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.2;
}

.investor-proof .proof-copy p {
    margin-top: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 72ch;
}

.investor-proof .proof-bullets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.35rem;
    width: 100%;
}

.investor-proof .proof-bullets span {
    padding: 0.55rem 0.65rem;
    font-size: 0.8rem;
    line-height: 1.35;
}

.investor-proof-split .proof-frame {
    max-width: min(1500px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
    gap: 1rem;
    align-items: center;
}

.investor-proof-split .proof-screen.neptor-product-frame {
    min-height: 0;
    align-self: center;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #080808;
}

.investor-proof-split .proof-screen--app.neptor-product-frame {
    aspect-ratio: 1.82 / 1;
}

.investor-proof-split .proof-screen--wide.neptor-product-frame {
    aspect-ratio: 2.47 / 1;
}

.investor-proof-split .proof-screen.neptor-product-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}

.investor-proof-split .proof-copy {
    align-self: stretch;
    padding: 1.25rem 1.3rem;
    justify-content: center;
    gap: 0.7rem;
    border-left: 0;
    border-top: 3px solid var(--btc);
    background:
        linear-gradient(180deg, rgba(var(--btc-rgb),0.12), rgba(255,255,255,0.055)),
        rgba(255,255,255,0.06);
}

.proof-copy-kicker {
    align-self: flex-start;
    color: var(--brand-orange);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.investor-proof-split .proof-copy strong {
    font-size: clamp(1.6rem, 2.6vw, 2.45rem);
    line-height: 1.05;
    font-weight: 800;
}

.investor-proof-split .proof-copy p {
    max-width: none;
    font-size: 0.98rem;
}

.investor-proof-split .proof-bullets {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 0.45rem;
}

.investor-proof-split .proof-bullets span {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0.85rem;
    background: rgba(10,10,10,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.88rem;
}

.proof-investor-note {
    margin-top: 0.25rem;
    padding: 0.85rem 0.95rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(var(--brand-orange-rgb),0.28);
    background: rgba(var(--brand-orange-rgb),0.08);
}

.proof-investor-note b {
    display: block;
    color: var(--brand-orange);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.proof-investor-note p {
    margin-top: 0.35rem;
    color: var(--text-primary);
    font-size: 0.86rem;
    line-height: 1.45;
}

.investor-proof .proof-trio {
    width: 100%;
    max-width: min(1160px, 100%);
    margin: 0 auto;
    gap: 0.75rem;
}

.investor-slide.investor-proof-trio {
    justify-content: safe center;
    overflow-x: hidden;
    overflow-y: auto;
    padding: clamp(2.75rem, 4.5vh, 3.5rem) 1.25rem;
}

.investor-proof-trio.investor-slide > * {
    max-width: 100%;
}

.investor-proof-trio > * {
    flex-shrink: 0;
}

.investor-proof-trio .investor-header {
    margin-bottom: 0.5rem;
}

.investor-proof-trio .investor-header h2 {
    font-size: clamp(0.95rem, 1.45vw, 1.22rem);
    line-height: 1.2;
}

/* 2 wide screenshots on top + 1 centered below — readable UI detail */
.investor-proof-trio .proof-trio {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    width: 100%;
    flex: 1;
    min-height: 0;
    align-items: start;
}

.investor-proof-trio .proof-mini:nth-child(3) {
    grid-column: 1 / -1;
    width: min(100%, 920px);
    justify-self: center;
}

.investor-proof-trio .proof-mini.neptor-product-frame {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.investor-proof-trio .neptor-product-chrome {
    padding: 0.3rem 0.5rem;
}

.investor-proof-trio .neptor-product-chrome__title {
    font-size: 0.5rem;
}

.investor-proof .proof-mini.neptor-product-frame img {
    width: 100%;
    height: auto;
    max-height: min(32vh, 300px);
    object-fit: contain;
    object-position: top center;
    background: #080808;
}

.investor-proof-trio .proof-mini.neptor-product-frame img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: top center;
    display: block;
}

.investor-proof-trio .proof-mini figcaption {
    flex-shrink: 0;
    text-align: center;
    padding: 0.35rem 0.25rem 0;
    font-size: 0.72rem;
    font-weight: 600;
}

.investor-proof-trio .proof-copy--wide {
    flex-shrink: 0;
    margin-top: 0.5rem;
    padding: 0.55rem 0.75rem;
}

.investor-proof-trio .proof-copy--wide strong {
    font-size: 0.88rem;
}

.investor-proof-trio .proof-copy--wide p {
    font-size: 0.78rem;
    line-height: 1.4;
    margin-top: 0.15rem;
}

.investor-proof .proof-copy--wide {
    width: 100%;
    max-width: min(1160px, 100%);
    margin: 0.75rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--btc);
    border-radius: var(--radius-sm);
}

.investor-proof .proof-copy--wide p {
    margin-top: 0;
    font-size: 0.86rem;
    line-height: 1.5;
}

.proof-frame {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 340px);
    gap: 1rem;
    align-items: stretch;
    min-height: 0;
}

.neptor-product-frame {
    position: relative;
    margin: 0;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.neptor-product-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--btc), var(--brand-orange));
    z-index: 2;
}

.neptor-product-chrome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.45rem 0.75rem;
    background: rgba(10, 10, 10, 0.96);
    border-bottom: 1px solid var(--border-subtle);
}

.neptor-product-chrome__dots {
    display: flex;
    gap: 0.28rem;
}

.neptor-product-chrome__dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.neptor-product-chrome__dots span:first-child {
    background: rgba(var(--btc-rgb), 0.85);
}

.neptor-product-chrome__title {
    flex: 1;
    text-align: center;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.neptor-product-frame img {
    width: 100%;
    display: block;
    height: auto;
    max-height: min(52vh, 540px);
    object-fit: contain;
    object-position: top center;
    background: #0A0A0A;
}

.proof-screen.neptor-product-frame img {
    max-height: min(54vh, 560px);
}

.proof-mini.neptor-product-frame img {
    max-height: min(32vh, 300px);
}

.proof-screen:not(.neptor-product-frame),
.proof-mini:not(.neptor-product-frame) {
    margin: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.24);
}

.proof-screen:not(.neptor-product-frame) img,
.proof-mini:not(.neptor-product-frame) img {
    width: 100%;
    display: block;
    object-fit: contain;
    object-position: top left;
    background: rgba(0,0,0,0.24);
}

.proof-screen:not(.neptor-product-frame) img {
    height: min(62vh, 640px);
}

.proof-trio {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    min-width: 0;
}

.proof-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.15rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 4px solid var(--btc);
    border-radius: var(--radius-sm);
    min-width: 0;
}

.proof-copy strong {
    color: var(--text-primary);
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    line-height: 1.15;
    font-weight: 700;
}

.proof-copy p {
    margin-top: 0.65rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

.proof-bullets {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.85rem;
}

.proof-bullets span {
    display: block;
    padding: 0.65rem 0.75rem;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-primary);
    font-size: 0.85rem;
    line-height: 1.35;
}

.neptor-product-chrome__spacer {
    width: 28px;
    flex-shrink: 0;
}

.proof-duo {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.proof-mini img {
    max-height: min(36vh, 360px);
    height: auto;
    object-fit: contain;
    object-position: top center;
}

.proof-mini figcaption {
    padding: 0.7rem 0.8rem;
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 600;
}

.proof-copy--wide {
    width: 100%;
    max-width: 900px;
    margin-top: 0.85rem;
    border-left: 4px solid var(--btc);
}

.economics-rail {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0.9rem;
    align-items: stretch;
}

.economics-block {
    min-height: 0;
    padding: 1.2rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.35rem;
}

.economics-block span {
    color: var(--brand-orange);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1;
}

.economics-block--highlight {
    background: rgba(var(--brand-orange-rgb), 0.10);
    border-color: rgba(var(--brand-orange-rgb), 0.32);
}

.economics-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--btc);
    font-size: 2.5rem;
    font-weight: 700;
}

.economics-callout {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.75rem 0.9rem;
    background: rgba(255,255,255,0.06);
    border-left: 3px solid var(--brand-orange);
    border-radius: var(--radius-sm);
}

.economics-callout p {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.45;
}

.investor-market,
.investor-market-stages,
.investor-monetization,
.investor-traction,
.investor-competitive,
.investor-unlimited {
    justify-content: safe center;
    overflow-y: auto;
}

.traction-subline {
    max-width: 720px;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: clamp(0.86rem, 1.1vw, 0.98rem);
    line-height: 1.5;
}

.traction-progress-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 0.85rem;
    align-items: stretch;
}

.traction-stack {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-width: 0;
    min-height: 0;
}

.traction-stack--metrics {
    justify-content: space-between;
}

.traction-panel,
.traction-metric {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-width: 0;
}

.traction-panel {
    padding: 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.traction-panel--lead {
    background:
        linear-gradient(180deg, rgba(var(--btc-rgb), 0.18), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.06);
    border-color: rgba(var(--btc-rgb), 0.32);
    border-left: 4px solid var(--btc);
}

.traction-panel--award {
    background:
        linear-gradient(135deg, rgba(var(--brand-orange-rgb), 0.14), rgba(var(--btc-rgb), 0.08)),
        rgba(255, 255, 255, 0.06);
    border-color: rgba(var(--brand-orange-rgb), 0.28);
    border-left: 4px solid var(--brand-orange);
}

.traction-panel--advisor {
    justify-content: flex-start;
    gap: 0.75rem;
}

.advisor-list {
    display: grid;
    gap: 0.5rem;
}

.advisor-row {
    display: grid;
    grid-template-columns: minmax(9rem, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 0.75rem;
    padding: 0.62rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: calc(var(--radius-sm) - 2px);
    background: rgba(0, 0, 0, 0.18);
}

.advisor-row strong {
    font-size: clamp(1.05rem, 1.45vw, 1.28rem);
    line-height: 1.12;
}

.advisor-role-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 0.34rem 0.68rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--brand-orange-rgb), 0.34);
    background: rgba(var(--brand-orange-rgb), 0.12);
    color: var(--brand-orange);
    font-size: clamp(0.68rem, 0.9vw, 0.8rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.15;
}

.traction-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 0.22rem 0.55rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-orange);
    background: rgba(var(--brand-orange-rgb), 0.12);
    border: 1px solid rgba(var(--brand-orange-rgb), 0.28);
    border-radius: 999px;
}

.traction-panel--lead .traction-tag {
    color: var(--btc);
    background: rgba(var(--btc-rgb), 0.1);
    border-color: rgba(var(--btc-rgb), 0.25);
}

.traction-panel strong {
    color: var(--text-primary);
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    line-height: 1.15;
    font-weight: 800;
}

.traction-panel--lead strong {
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.08;
}

.traction-panel--award strong {
    font-size: clamp(1.05rem, 1.55vw, 1.35rem);
    line-height: 1.2;
}

.traction-panel p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.45;
}

.traction-metrics-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.traction-metric {
    padding: 1rem 0.85rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    min-height: 118px;
}

.traction-metric strong {
    display: block;
    color: var(--text-primary);
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    line-height: 0.95;
    font-weight: 850;
    letter-spacing: 0;
}

.traction-metric--highlight {
    background: rgba(var(--brand-orange-rgb), 0.08);
    border-color: rgba(var(--brand-orange-rgb), 0.28);
}

.traction-metric--highlight strong {
    color: var(--brand-orange);
}

.traction-metric span {
    color: var(--text-secondary);
    font-size: 0.78rem;
    line-height: 1.35;
}

.investor-traction .investor-header {
    margin-bottom: clamp(0.65rem, 1.5vh, 1rem);
    flex-shrink: 0;
}

.investor-traction .investor-header h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.35rem);
    line-height: 1.08;
    max-width: min(980px, 100%);
}

.investor-traction .traction-subline {
    max-width: 900px;
    font-size: clamp(0.86rem, 1vw, 0.96rem);
    line-height: 1.4;
}

.investor-slide.investor-traction {
    padding-top: clamp(1.85rem, 3vh, 2.5rem);
    padding-bottom: clamp(3.25rem, 5.5vh, 4rem);
}

.investor-traction > * {
    flex-shrink: 0;
    min-height: auto;
}

.traction-signal-board {
    width: 100%;
    max-width: min(1500px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "backing stats"
        "liquidity advisors"
        "recognition recognition";
    grid-auto-rows: auto;
    gap: clamp(0.7rem, 1vw, 0.9rem);
    align-items: stretch;
    min-width: 0;
    flex-shrink: 0;
}

.traction-backing-card,
.traction-partners-card,
.traction-advisor-card,
.traction-recognition-card,
.traction-stat-card {
    position: relative;
    min-width: 0;
    height: 100%;
    align-self: stretch;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 12px 36px rgba(0,0,0,0.22);
    overflow: visible;
}

.traction-backing-card,
.traction-partners-card,
.traction-advisor-card,
.traction-recognition-card {
    display: flex;
    flex-direction: column;
    padding: clamp(1rem, 1.25vw, 1.2rem);
}

.traction-backing-card {
    grid-area: backing;
    min-height: 0;
    background:
        radial-gradient(circle at 95% 12%, rgba(var(--btc-rgb), 0.18), transparent 38%),
        linear-gradient(135deg, rgba(var(--btc-rgb),0.18), rgba(255,255,255,0.045)),
        rgba(255,255,255,0.055);
    border-color: rgba(var(--btc-rgb), 0.32);
    border-left: 5px solid var(--btc);
}

.traction-backing-card strong {
    display: block;
    margin-top: 0;
    color: var(--text-primary);
    font-size: clamp(1.2rem, 1.85vw, 1.55rem);
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: 0;
}

.traction-backing-card > .traction-tag {
    margin-bottom: 0.55rem;
}

.traction-partners-card p,
.traction-advisor-card p {
    color: var(--text-secondary);
    font-size: clamp(0.84rem, 0.95vw, 0.94rem);
    line-height: 1.45;
}

.traction-backing-card p,
.traction-recognition-card p {
    margin: 0.55rem 0 0;
    color: var(--text-secondary);
    font-size: clamp(0.84rem, 0.95vw, 0.94rem);
    line-height: 1.45;
}

.traction-stat-strip {
    grid-area: stats;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.65rem, 0.9vw, 0.85rem);
    align-self: stretch;
    height: 100%;
    min-height: 100%;
}

.traction-stat-strip--quad {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.traction-stat-strip--quad .traction-stat-card span {
    max-width: 13ch;
}

.traction-stat-card {
    min-height: 0;
    height: 100%;
    padding: 0.85rem 0.65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.6rem;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.028)),
        rgba(255,255,255,0.045);
}

.traction-stat-card strong {
    color: var(--text-primary);
    font-size: clamp(1.65rem, 2.8vw, 2.5rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0;
}

.traction-stat-card span {
    color: var(--text-secondary);
    font-size: clamp(0.82rem, 1vw, 0.98rem);
    line-height: 1.25;
    max-width: 15ch;
}

.traction-stat-card--stores {
    gap: 0.55rem;
}

.traction-store-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.traction-store-badges img {
    display: block;
    width: clamp(2.1rem, 2.8vw, 2.65rem);
    height: clamp(2.1rem, 2.8vw, 2.65rem);
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.traction-stat-card--highlight {
    background:
        radial-gradient(circle at 50% 0%, rgba(var(--brand-orange-rgb), 0.18), transparent 42%),
        rgba(var(--brand-orange-rgb), 0.08);
    border-color: rgba(var(--brand-orange-rgb), 0.34);
}

.traction-stat-card--highlight strong {
    color: var(--brand-orange);
}

.traction-partners-card {
    grid-area: liquidity;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.032)),
        rgba(255,255,255,0.045);
}

.traction-partners-card strong {
    display: block;
    margin-top: 0;
    color: var(--text-primary);
    font-size: clamp(1.15rem, 1.55vw, 1.38rem);
    line-height: 1.22;
    font-weight: 850;
}

.traction-advisor-card {
    grid-area: advisors;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.032)),
        rgba(255,255,255,0.045);
}

.traction-card-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 0.55rem;
    flex-shrink: 0;
}

.traction-card-head b {
    color: rgba(255,255,255,0.72);
    font-size: 0.82rem;
    font-weight: 750;
    text-align: right;
}

.advisor-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    flex: 1 1 auto;
    align-items: stretch;
}

.advisor-profile {
    min-height: 0;
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding: 0.75rem;
    border: 1px solid rgba(var(--brand-orange-rgb),0.18);
    border-radius: calc(var(--radius-sm) - 2px);
    background:
        radial-gradient(circle at 100% 0%, rgba(var(--brand-orange-rgb),0.12), transparent 44%),
        rgba(0,0,0,0.22);
}

.advisor-profile strong {
    display: block;
    color: var(--text-primary);
    font-size: clamp(0.98rem, 1.2vw, 1.12rem);
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: 0;
}

.advisor-profile span {
    display: inline-block;
    margin-top: 0.35rem;
    padding: 0.3rem 0.58rem;
    color: var(--brand-orange);
    background: rgba(var(--brand-orange-rgb),0.12);
    border: 1px solid rgba(var(--brand-orange-rgb),0.28);
    border-radius: 999px;
    font-size: clamp(0.64rem, 0.78vw, 0.74rem);
    font-weight: 800;
    line-height: 1.2;
    white-space: normal;
    max-width: 100%;
}

.traction-advisor-card p {
    margin: 0.65rem 0 0;
    flex-shrink: 0;
}

.traction-partners-card p {
    margin: 0.55rem 0 0;
    flex: 1 1 auto;
}

.traction-recognition-row {
    grid-area: recognition;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.7rem, 1vw, 0.9rem);
    align-items: stretch;
    min-width: 0;
}

.traction-recognition-card {
    min-height: clamp(9.5rem, 18vh, 11.5rem);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
    background:
        radial-gradient(circle at 100% 0%, rgba(var(--brand-orange-rgb), 0.18), transparent 42%),
        linear-gradient(135deg, rgba(var(--brand-orange-rgb),0.14), rgba(var(--btc-rgb),0.07)),
        rgba(255,255,255,0.05);
    border-color: rgba(var(--brand-orange-rgb), 0.32);
    border-left: 5px solid var(--brand-orange);
}

.traction-recognition-card .traction-tag {
    flex-shrink: 0;
    margin: 0;
}

.traction-recognition-copy {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.traction-recognition-copy strong {
    display: block;
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(0.88rem, 1.05vw, 1.05rem);
    line-height: 1.25;
    font-weight: 850;
}

.traction-recognition-card p {
    margin: 0;
    margin-top: auto;
}

@media (min-width: 1400px) {
    .traction-signal-board {
        gap: 0.75rem;
    }

    .traction-partners-card strong {
        font-size: clamp(1.1rem, 1.35vw, 1.3rem);
        line-height: 1.25;
    }

    .traction-advisor-card p,
    .traction-partners-card p {
        font-size: 0.92rem;
        line-height: 1.42;
    }

    .advisor-profile strong {
        font-size: 1.05rem;
    }
}

@media (max-width: 1280px) {
    .traction-signal-board {
        grid-template-columns: 1fr;
        grid-template-areas:
            "backing"
            "stats"
            "liquidity"
            "advisors"
            "recognition";
        gap: 0.75rem;
        align-items: stretch;
    }

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

    .traction-recognition-card {
        min-height: 0;
    }

    .traction-stat-strip {
        height: auto;
        min-height: 0;
    }

    .traction-stat-card {
        height: auto;
    }

    .traction-recognition-card {
        flex-direction: column;
        gap: 0.55rem;
        min-height: 0;
    }

    .traction-stat-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .traction-stat-strip--quad {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .investor-traction .investor-header {
        margin-bottom: 0.85rem;
    }

    .investor-traction .investor-header h2 {
        font-size: clamp(1.35rem, 4.5vw, 2rem);
        line-height: 1.12;
    }

    .investor-traction .traction-subline {
        font-size: clamp(0.82rem, 2.2vw, 0.95rem);
        line-height: 1.4;
    }

    .traction-backing-card strong,
    .traction-recognition-card strong {
        font-size: clamp(1.25rem, 3.8vw, 1.75rem);
    }

    .traction-partners-card strong {
        font-size: clamp(1.05rem, 2.8vw, 1.28rem);
        line-height: 1.25;
    }

    .traction-stat-strip--quad {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .traction-stat-strip {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .traction-stat-card {
        min-height: auto;
        padding: 0.85rem 1rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 0.75rem;
    }

    .traction-stat-card strong {
        font-size: clamp(1.75rem, 7vw, 2.35rem);
        flex-shrink: 0;
    }

    .traction-stat-card span {
        max-width: none;
        text-align: right;
        font-size: clamp(0.78rem, 2.4vw, 0.9rem);
    }

    .traction-stat-card--stores {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .traction-store-badges img {
        width: 2.35rem;
        height: 2.35rem;
    }

    .traction-backing-card,
    .traction-recognition-card,
    .traction-partners-card,
    .traction-advisor-card {
        min-height: auto;
    }

    .traction-backing-card,
    .traction-recognition-card,
    .traction-partners-card,
    .traction-advisor-card {
        padding: 1rem 1.05rem;
    }

    .advisor-profile-grid {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .advisor-profile {
        min-height: auto;
        align-items: flex-start;
        padding: 0.85rem;
    }

    .advisor-profile strong {
        font-size: clamp(1.05rem, 3.5vw, 1.35rem);
    }

    .advisor-profile span {
        max-width: 100%;
        white-space: normal;
        font-size: clamp(0.65rem, 2vw, 0.76rem);
    }

    .traction-card-head {
        margin-bottom: 0.55rem;
    }

    .traction-backing-card p,
    .traction-recognition-card p,
    .traction-partners-card p,
    .traction-advisor-card p {
        font-size: clamp(0.8rem, 2.2vw, 0.92rem);
    }
}

@media (max-width: 640px) {
    .investor-traction .investor-header h2 {
        font-size: clamp(1.2rem, 5.5vw, 1.55rem);
    }

    .traction-signal-board {
        gap: 0.55rem;
    }

    .traction-backing-card strong,
    .traction-recognition-card strong {
        font-size: clamp(1.08rem, 4.8vw, 1.35rem);
    }
}

@media (max-height: 780px) {
    .investor-traction .investor-header {
        margin-bottom: 0.55rem;
    }

    .investor-traction .investor-header h2 {
        font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    }

    .investor-traction .traction-subline {
        font-size: 0.8rem;
        margin-top: 0.25rem;
    }

    .traction-signal-board {
        gap: 0.5rem;
    }

    .traction-backing-card,
    .traction-recognition-card,
    .traction-partners-card,
    .traction-advisor-card,
    .traction-stat-card {
        min-height: auto;
    }

    .traction-backing-card,
    .traction-recognition-card {
        padding: 0.85rem 1rem;
    }

    .traction-partners-card,
    .traction-advisor-card {
        padding: 0.8rem 0.95rem;
    }

    .traction-partners-card strong {
        font-size: clamp(0.98rem, 1.8vw, 1.15rem);
        line-height: 1.28;
    }

    .traction-backing-card strong,
    .traction-recognition-card strong {
        margin-top: 0.45rem;
        font-size: clamp(1.1rem, 2vw, 1.45rem);
    }

    .traction-stat-card {
        padding: 0.65rem 0.75rem;
    }

    .traction-stat-card strong {
        font-size: clamp(1.45rem, 2.8vw, 2rem);
    }

    .traction-stat-card span {
        font-size: 0.72rem;
    }

    .advisor-profile {
        padding: 0.7rem;
    }

    .advisor-profile strong {
        font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    }
}

.market-map {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1rem;
    align-items: stretch;
}

.market-distribution,
.market-neptor-position {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    box-shadow: 0 14px 44px rgba(0,0,0,0.22);
    min-width: 0;
}

.market-distribution {
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.market-section-label {
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.market-layer {
    min-height: 104px;
    padding: 0.85rem 0.95rem;
    display: grid;
    grid-template-columns: minmax(132px, 0.35fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    background: rgba(10,10,10,0.28);
}

.market-layer--base {
    border-left: 4px solid rgba(var(--btc-rgb),0.85);
}

.market-layer--growth {
    border-left: 4px solid rgba(var(--brand-orange-rgb),0.85);
}

.market-layer--wide {
    border-left: 4px solid rgba(255,255,255,0.28);
}

.market-layer strong {
    display: block;
    color: var(--text-primary);
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    line-height: 0.95;
    font-weight: 850;
    letter-spacing: 0;
}

.market-layer p,
.market-layer > span {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.45;
}

.market-layer p {
    margin-top: 0.3rem;
}

.market-neptor-position {
    padding: 1.35rem 1.45rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(var(--btc-rgb),0.16), rgba(var(--brand-orange-rgb),0.1)),
        rgba(255,255,255,0.06);
    border-color: rgba(var(--btc-rgb),0.3);
    border-top: 2px solid rgba(var(--btc-rgb),0.9);
}

.market-neptor-position h3 {
    margin-top: 0.75rem;
    color: var(--text-primary);
    font-size: clamp(2.2rem, 4.2vw, 4rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: 0;
}

.market-section-label--accent {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.32rem 0.72rem;
    border-radius: 999px;
    color: var(--brand-orange);
    background: rgba(var(--brand-orange-rgb), 0.14);
    border: 1px solid rgba(var(--brand-orange-rgb), 0.32);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.market-neptor-position > p {
    max-width: 780px;
    margin-top: 0.85rem;
    color: var(--text-secondary);
    font-size: clamp(0.92rem, 1.1vw, 1.05rem);
    line-height: 1.5;
}

.market-trends-list {
    list-style: none;
    margin: clamp(1rem, 2vh, 1.35rem) 0 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.market-trends-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.72rem 0.85rem;
    border-radius: calc(var(--radius-sm) - 2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.22);
    color: var(--text-secondary);
    font-size: clamp(0.82rem, 1vw, 0.94rem);
    line-height: 1.45;
}

.market-trends-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    margin-top: 0.45rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--brand-orange);
    box-shadow: 0 0 10px rgba(var(--brand-orange-rgb), 0.45);
}

.market-trends-list strong {
    color: var(--text-primary);
    font-weight: 850;
}

.market-difference-grid {
    margin-top: clamp(1.35rem, 3vh, 2.1rem);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.market-difference-grid div {
    padding: clamp(1rem, 1.5vw, 1.25rem);
    min-height: clamp(12rem, 24vh, 15rem);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
        rgba(10,10,10,0.34);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 16px 42px rgba(0,0,0,0.2);
}

.market-difference-grid strong {
    display: block;
    color: var(--text-primary);
    font-size: clamp(1.22rem, 1.8vw, 1.6rem);
    line-height: 1.1;
    font-weight: 900;
}

.market-difference-grid ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.market-difference-grid li {
    display: flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.45rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--brand-orange-rgb), 0.18);
    background: rgba(var(--brand-orange-rgb), 0.075);
    color: var(--text-primary);
    font-size: clamp(0.78rem, 0.95vw, 0.9rem);
    font-weight: 750;
    line-height: 1.15;
}

.market-difference-grid li::before {
    content: '';
    width: 6px;
    height: 6px;
    margin-right: 0.48rem;
    border-radius: 999px;
    background: var(--brand-orange);
    box-shadow: 0 0 12px rgba(var(--brand-orange-rgb), 0.45);
    flex-shrink: 0;
}

.market-footnote {
    width: 100%;
    margin-top: 0.65rem;
    padding: 0.65rem 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--brand-orange);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.86rem;
    line-height: 1.45;
}

/* ── Market stages (expansion path) ──────────────────────────────────── */
.investor-market-stages .investor-header {
    margin-bottom: clamp(1rem, 2.2vh, 1.6rem);
}

.investor-market-stages .investor-header h2 {
    max-width: min(1100px, 100%);
    font-size: clamp(1.55rem, 2.8vw, 2.55rem);
}

.market-stages-subline {
    max-width: 820px;
    margin-top: 0.55rem;
    color: var(--text-secondary);
    font-size: clamp(0.86rem, 1.1vw, 0.98rem);
    line-height: 1.5;
}

.market-stages-board {
    width: 100%;
    max-width: min(1500px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(0.85rem, 1.6vh, 1.15rem);
    position: relative;
}

.market-stages-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.7rem;
    align-items: stretch;
}

.market-stage-card {
    position: relative;
    min-height: clamp(15.5rem, 30vh, 18.5rem);
    padding: clamp(0.95rem, 1.4vw, 1.2rem);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.028)),
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    min-width: 0;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.market-stage-card::after {
    content: '';
    position: absolute;
    inset: auto 0.9rem 0 0.9rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--btc-rgb), 0.75), rgba(var(--brand-orange-rgb), 0.4), transparent);
    opacity: 0.4;
}

.market-stage-card--lead {
    border-left: 4px solid var(--btc);
    background:
        linear-gradient(180deg, rgba(var(--btc-rgb), 0.14), rgba(255,255,255,0.035)),
        rgba(255, 255, 255, 0.045);
    border-color: rgba(var(--btc-rgb), 0.28);
}

.market-stage-card--wide {
    background:
        radial-gradient(circle at 100% 0%, rgba(var(--brand-orange-rgb), 0.14), transparent 45%),
        linear-gradient(180deg, rgba(var(--brand-orange-rgb), 0.1), rgba(255,255,255,0.035)),
        rgba(255, 255, 255, 0.045);
    border-color: rgba(var(--brand-orange-rgb), 0.26);
}

.market-stage-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.market-stage-tag {
    color: var(--brand-orange);
    font-size: clamp(0.62rem, 0.75vw, 0.72rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.market-stage-card--lead .market-stage-tag {
    color: var(--btc);
}

.market-stage-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.72rem;
    font-weight: 850;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.market-stage-card strong {
    color: var(--text-primary);
    font-size: clamp(0.98rem, 1.25vw, 1.2rem);
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: -0.01em;
}

.market-stage-tam {
    margin: 0;
    color: var(--text-secondary);
    font-size: clamp(0.72rem, 0.9vw, 0.82rem);
    line-height: 1.35;
}

.market-stage-tam b {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--text-primary);
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
}

.market-stage-metrics {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
}

.market-stage-metrics div {
    padding: 0.55rem 0.5rem;
    border-radius: calc(var(--radius-sm) - 2px);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.22);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.market-stage-metrics span {
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.market-stage-metrics b {
    color: var(--text-primary);
    font-size: clamp(0.88rem, 1.05vw, 1.05rem);
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.market-stages-summary {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
    gap: 1rem;
    align-items: center;
    padding: clamp(1rem, 1.6vw, 1.25rem) clamp(1.1rem, 1.8vw, 1.5rem);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(var(--btc-rgb), 0.3);
    border-top: 2px solid rgba(var(--btc-rgb), 0.9);
    background:
        linear-gradient(135deg, rgba(var(--btc-rgb), 0.16), rgba(var(--brand-orange-rgb), 0.1)),
        rgba(255,255,255,0.06);
    box-shadow: 0 16px 44px rgba(0,0,0,0.24);
}

.market-stages-summary__copy p {
    margin: 0.55rem 0 0;
    max-width: 720px;
    color: var(--text-secondary);
    font-size: clamp(0.86rem, 1.05vw, 0.98rem);
    line-height: 1.5;
}

.market-stages-summary__copy b {
    color: var(--text-primary);
    font-weight: 850;
}

.market-stages-summary__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.market-stages-summary__stats div {
    padding: 0.75rem 0.85rem;
    border-radius: calc(var(--radius-sm) - 2px);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.24);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.market-stages-summary__stats strong {
    color: var(--text-primary);
    font-size: clamp(1.55rem, 2.3vw, 2.15rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
}

.market-stages-summary__stats span {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.monetization-grid {
    width: 100%;
    max-width: min(1500px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 1.5vw, 1.35rem);
    align-items: stretch;
}

.monetization-grid--quad {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.monetization-grid--quad .monetization-card {
    min-height: clamp(14rem, 26vh, 17.5rem);
}

.monetization-card {
    position: relative;
    min-height: clamp(16.5rem, 31vh, 21rem);
    padding: clamp(1.35rem, 2.2vw, 2rem);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.028)),
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
    overflow: hidden;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

.monetization-card::after {
    content: '';
    position: absolute;
    inset: auto 1.2rem 0 1.2rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--btc-rgb), 0.9), rgba(var(--brand-orange-rgb), 0.45), transparent);
    opacity: 0.45;
}

.monetization-card--lead {
    border-left: 5px solid var(--btc);
    background:
        linear-gradient(180deg, rgba(var(--btc-rgb), 0.12), rgba(255,255,255,0.035)),
        rgba(255, 255, 255, 0.045);
}

.monetization-card--highlight {
    background:
        radial-gradient(circle at 100% 0%, rgba(var(--brand-orange-rgb), 0.16), transparent 42%),
        linear-gradient(180deg, rgba(var(--brand-orange-rgb), 0.11), rgba(255,255,255,0.035)),
        rgba(255, 255, 255, 0.045);
    border-color: rgba(var(--brand-orange-rgb), 0.28);
}

.monetization-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.2rem;
}

.monetization-tag {
    color: var(--brand-orange);
    font-size: clamp(0.72rem, 0.9vw, 0.86rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.monetization-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.78rem;
    font-weight: 850;
}

.monetization-card strong {
    color: var(--text-primary);
    font-size: clamp(1.45rem, 2.2vw, 2.1rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.monetization-card p {
    color: var(--text-secondary);
    font-size: clamp(0.92rem, 1.15vw, 1.06rem);
    line-height: 1.45;
    margin: 0;
    max-width: 40ch;
}

.revenue-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr);
    gap: 0.45rem;
    align-items: center;
    margin: 0.35rem 0 0.15rem;
}

.revenue-flow span {
    min-height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.5rem;
    border-radius: calc(var(--radius-sm) - 2px);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.22);
    color: var(--text-primary);
    font-size: clamp(0.76rem, 0.95vw, 0.88rem);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
}

.revenue-flow b {
    position: relative;
    height: 2px;
    background: rgba(var(--brand-orange-rgb), 0.55);
}

.revenue-flow b::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid rgba(var(--brand-orange-rgb), 0.82);
    border-right: 2px solid rgba(var(--brand-orange-rgb), 0.82);
    transform: translateY(-50%) rotate(45deg);
}

.revenue-outcome {
    margin-top: auto !important;
    padding: 0.85rem 0.9rem;
    border-radius: calc(var(--radius-sm) - 2px);
    border: 1px solid rgba(var(--brand-orange-rgb), 0.22);
    background:
        linear-gradient(90deg, rgba(var(--brand-orange-rgb), 0.12), rgba(255,255,255,0.035)),
        rgba(0,0,0,0.18);
    color: var(--text-primary) !important;
    font-weight: 750;
}

.monetization-list {
    margin: auto 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.58rem;
}

.monetization-list li {
    position: relative;
    padding-left: 1rem;
    color: var(--text-primary);
    font-size: clamp(0.86rem, 1vw, 0.96rem);
    line-height: 1.35;
}

.monetization-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--btc);
}

.investor-monetization .investor-header {
    margin-bottom: clamp(1.25rem, 2.8vh, 2rem);
}

.investor-monetization .investor-header h2 {
    max-width: min(1120px, 100%);
    font-size: clamp(2rem, 3.8vw, 3.35rem);
    line-height: 1.08;
}

.monetization-subline {
    max-width: 960px;
    margin-top: 0.8rem;
    color: var(--text-secondary);
    font-size: clamp(0.98rem, 1.25vw, 1.14rem);
    line-height: 1.45;
}

.investor-competitive {
    justify-content: safe center;
    overflow-y: auto;
}

.competitive-subline {
    max-width: 780px;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: clamp(0.86rem, 1.1vw, 0.98rem);
    line-height: 1.5;
}

.competitive-layout {
    width: 100%;
    max-width: min(1500px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 1rem;
    align-items: stretch;
}

.competitive-context,
.competitive-wins {
    padding: clamp(1.1rem, 1.8vw, 1.45rem);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.22);
    min-width: 0;
}

.competitive-context {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-left: 4px solid rgba(255, 255, 255, 0.22);
}

.competitive-context strong {
    color: var(--text-primary);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.12;
}

.competitive-context p {
    margin: 0;
    color: var(--text-secondary);
    font-size: clamp(0.86rem, 1.05vw, 0.96rem);
    line-height: 1.5;
}

.competitive-wins {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    border-top: 3px solid var(--btc);
    background:
        linear-gradient(180deg, rgba(var(--btc-rgb), 0.1), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.05);
}

.competitive-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    color: var(--brand-orange);
    background: rgba(var(--brand-orange-rgb), 0.12);
    border: 1px solid rgba(var(--brand-orange-rgb), 0.28);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.competitive-wins-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.competitive-win-card {
    padding: 0.85rem 0.95rem;
    border-radius: calc(var(--radius-sm) - 2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.22);
    min-width: 0;
}

.competitive-win-card--highlight {
    border-color: rgba(var(--brand-orange-rgb), 0.32);
    background:
        linear-gradient(135deg, rgba(var(--brand-orange-rgb), 0.12), rgba(0, 0, 0, 0.22)),
        rgba(0, 0, 0, 0.22);
}

.competitive-win-card strong {
    display: block;
    color: var(--text-primary);
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.competitive-win-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: clamp(0.78rem, 0.95vw, 0.88rem);
    line-height: 1.45;
}

.competitive-win-card p strong {
    display: inline;
    color: var(--brand-orange);
    font-size: inherit;
    margin: 0;
}

.monetization-ladder {
    width: min(980px, 100%);
    margin-top: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr);
    gap: 0.65rem;
    align-items: center;
}

.monetization-ladder span {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--btc-rgb), 0.22);
    background: rgba(var(--btc-rgb), 0.08);
    color: var(--text-primary);
    font-size: clamp(0.8rem, 1vw, 0.94rem);
    font-weight: 850;
    text-align: center;
}

.monetization-ladder span:last-child {
    border-color: rgba(var(--brand-orange-rgb), 0.34);
    background: rgba(var(--brand-orange-rgb), 0.12);
}

.monetization-ladder b {
    height: 2px;
    background: linear-gradient(90deg, var(--btc), var(--brand-orange));
    position: relative;
}

.monetization-ladder b::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--brand-orange);
    border-right: 2px solid var(--brand-orange);
    transform: translateY(-50%) rotate(45deg);
}

.unlimited-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.5fr);
    grid-template-rows: auto auto;
    gap: 0.75rem;
}

.unlimited-problem {
    grid-row: span 2;
    padding: 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 4px solid var(--btc);
    border-radius: var(--radius-sm);
}

.unlimited-kicker {
    color: var(--brand-orange);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.unlimited-problem p {
    margin-top: 0.45rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
}

.unlimited-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.unlimited-step {
    padding: 0.85rem 0.9rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
}

.unlimited-step--accent {
    background: rgba(var(--brand-orange-rgb), 0.1);
    border-color: rgba(var(--brand-orange-rgb), 0.3);
}

.unlimited-step span {
    color: var(--brand-orange);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
}

.unlimited-step strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--text-primary);
    font-size: 0.88rem;
    line-height: 1.2;
}

.unlimited-step p {
    margin-top: 0.3rem;
    color: var(--text-secondary);
    font-size: 0.78rem;
    line-height: 1.4;
}

.unlimited-upsell {
    grid-column: 2;
    padding: 0.85rem 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--brand-orange);
    border-radius: var(--radius-sm);
}

.unlimited-upsell strong {
    color: var(--text-primary);
    font-size: 0.92rem;
}

.unlimited-upsell p {
    margin-top: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.45;
}

.investor-skillapps {
    justify-content: safe center;
    overflow-y: auto;
}

.skillapps-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0.75rem;
    align-items: stretch;
}

.skillapps-old,
.skillapps-new {
    padding: 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    min-width: 0;
}

.skillapps-old {
    border-left: 4px solid rgba(255, 255, 255, 0.2);
}

.skillapps-new {
    background: rgba(var(--brand-orange-rgb), 0.08);
    border-color: rgba(var(--brand-orange-rgb), 0.28);
    border-left: 4px solid var(--brand-orange);
}

.skillapps-kicker {
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.skillapps-kicker--accent {
    color: var(--brand-orange);
}

.skillapps-old strong,
.skillapps-new strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--text-primary);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.15;
}

.skillapps-list {
    margin: 0.55rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.skillapps-list li {
    position: relative;
    padding-left: 0.85rem;
    color: var(--text-primary);
    font-size: 0.82rem;
    line-height: 1.4;
}

.skillapps-list--muted li {
    color: var(--text-secondary);
}

.skillapps-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--btc);
}

.skillapps-list--muted li::before {
    background: rgba(255, 255, 255, 0.25);
}

.skillapps-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--btc);
    font-size: 2rem;
    font-weight: 700;
    padding: 0 0.15rem;
}

.skillapps-pipeline {
    width: 100%;
    margin-top: 0.9rem;
    padding: 1.1rem 1.2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.7rem;
    align-items: center;
    border: 1px solid rgba(var(--brand-orange-rgb), 0.24);
    border-top: 2px solid rgba(var(--brand-orange-rgb), 0.78);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(90deg, rgba(var(--brand-orange-rgb),0.12), rgba(var(--btc-rgb),0.08)),
        rgba(255,255,255,0.045);
    box-shadow: 0 14px 42px rgba(0,0,0,0.22);
}

.skillapps-pipeline span {
    position: relative;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.9rem;
    background: rgba(10,10,10,0.32);
    border: 1px solid rgba(var(--btc-rgb), 0.22);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.86rem;
    font-weight: 750;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.25;
}

.skillapps-pipeline span:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--btc);
    font-size: 1.45rem;
    font-weight: 800;
}

.skillapps-footnote {
    width: 100%;
    margin-top: 0.55rem;
    padding: 0.65rem 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--brand-orange);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.84rem;
    line-height: 1.45;
}

.plan-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 1rem;
}

.plan-ask {
    min-height: 0;
    padding: 1.25rem 1.3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(var(--brand-orange-rgb), 0.18), rgba(255,255,255,0.06));
    border-color: rgba(var(--brand-orange-rgb), 0.28);
}

.plan-ask strong {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
}

.plan-step {
    min-height: 0;
    padding: 1.05rem 1.15rem;
}

.plan-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.plan-step span {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.raise-proof-layout {
    width: 100%;
    max-width: min(1500px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 0.95fr 1.35fr;
    gap: clamp(1rem, 1.4vw, 1.35rem);
    align-items: stretch;
}

.raise-ask-panel,
.raise-target-panel,
.raise-use-panel {
    position: relative;
    min-width: 0;
    min-height: clamp(28rem, 48vh, 34rem);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.028)),
        rgba(255,255,255,0.045);
    box-shadow: 0 22px 70px rgba(0,0,0,0.28);
    overflow: hidden;
}

.raise-ask-panel {
    padding: clamp(1.5rem, 2.2vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at 100% 0%, rgba(var(--brand-orange-rgb),0.22), transparent 42%),
        linear-gradient(180deg, rgba(var(--brand-orange-rgb),0.18), rgba(var(--btc-rgb),0.08)),
        rgba(255,255,255,0.055);
    border-color: rgba(var(--brand-orange-rgb),0.36);
}

.raise-ask-panel span,
.raise-target-panel > span,
.raise-use-panel > span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.34rem 0.74rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--brand-orange-rgb), 0.3);
    background: rgba(var(--brand-orange-rgb), 0.1);
    color: var(--brand-orange);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.raise-ask-panel strong {
    margin-top: 1.1rem;
    color: var(--text-primary);
    font-size: clamp(3.1rem, 5vw, 5rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0;
}

.raise-ask-panel p {
    margin-top: 1.35rem;
    max-width: 360px;
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.15vw, 1.08rem);
    line-height: 1.48;
}

.raise-target-panel {
    padding: clamp(1.25rem, 1.8vw, 1.6rem);
    display: grid;
    grid-template-rows: auto repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.raise-metric {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.95rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: calc(var(--radius-sm) - 2px);
    background: rgba(0,0,0,0.2);
    text-align: center;
}

.raise-metric strong {
    display: block;
    color: var(--text-primary);
    font-size: clamp(2.2rem, 3.6vw, 3.45rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0;
}

.raise-metric p {
    margin-top: 0.35rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.25;
}

.raise-metric--highlight strong {
    color: var(--brand-orange);
}

.raise-metric--highlight {
    border-color: rgba(var(--brand-orange-rgb), 0.32);
    background:
        radial-gradient(circle at 50% 0%, rgba(var(--brand-orange-rgb),0.16), transparent 48%),
        rgba(var(--brand-orange-rgb),0.08);
}

.raise-use-panel {
    padding: clamp(1.25rem, 1.8vw, 1.6rem);
    display: grid;
    grid-template-rows: auto repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.fund-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 0.95rem 1rem 0.95rem 1.15rem;
    min-height: 0;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: calc(var(--radius-sm) - 2px);
    background:
        linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
        rgba(10,10,10,0.34);
    overflow: hidden;
}

.fund-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--btc);
    opacity: 0.9;
}

.fund-card:first-of-type::before,
.fund-card:nth-of-type(2)::before {
    background: var(--brand-orange);
}

.fund-card strong {
    color: var(--text-primary);
    font-size: clamp(0.95rem, 1.15vw, 1.08rem);
    line-height: 1.2;
    font-weight: 850;
}

.fund-card p {
    margin-top: 0.25rem;
    color: var(--text-secondary);
    font-size: clamp(0.74rem, 0.9vw, 0.84rem);
    line-height: 1.35;
}

.fund-card b {
    color: var(--text-primary);
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 900;
    letter-spacing: 0;
}

.investor-raise {
    justify-content: safe center;
}

.investor-raise .investor-header {
    margin-bottom: clamp(1.4rem, 3vh, 2.1rem);
}

.investor-raise .investor-header h2 {
    max-width: min(1180px, 100%);
    font-size: clamp(2rem, 3.7vw, 3.45rem);
    line-height: 1.08;
}

.raise-subline {
    max-width: 940px;
    margin-top: 0.75rem;
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.25vw, 1.12rem);
    line-height: 1.45;
}

.team-strip-board {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.team-strip-card {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 1.15rem;
    padding: 1.35rem 1.5rem;
    align-items: start;
    background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 12px 40px rgba(0,0,0,0.22);
    border-radius: var(--radius-sm);
    min-width: 0;
}

.team-strip-avatar {
    width: 100px;
    height: 100px;
    border-radius: 999px;
    object-fit: cover;
    border: 3px solid rgba(var(--btc-rgb), 0.55);
    box-shadow: 0 0 0 6px rgba(var(--btc-rgb), 0.08);
}

.team-strip-copy h3 {
    color: var(--text-primary);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.team-strip-copy strong {
    display: block;
    color: var(--btc);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.team-strip-copy p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 0.75rem;
}

.team-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(var(--btc-rgb), 0.1);
    border: 1px solid rgba(var(--btc-rgb), 0.22);
    color: rgba(255,255,255,0.86);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.25;
    max-width: 100%;
}

.team-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-chip__icon {
    margin-right: 0.45rem;
    font-size: 0.92rem;
    line-height: 1;
    flex-shrink: 0;
}

.close-end {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.85rem;
}

.close-end .close-kicker {
    margin-bottom: 0;
}

.close-end__up {
    margin: 0;
    max-width: 36rem;
    color: var(--text-primary);
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 750;
    line-height: 1.3;
}

.close-end__down {
    margin: 0.15rem 0 0;
    max-width: 38rem;
    color: var(--text-secondary);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    font-weight: 650;
    line-height: 1.4;
}

.close-end__down a {
    color: var(--brand-orange);
    font-weight: 800;
    text-decoration: none;
}

.close-end .close-founder-line {
    margin-top: 0.35rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.close-qr {
    margin: 0.35rem 0;
    width: min(232px, 42vw);
    padding: 0.75rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.close-qr img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.close-qr figcaption {
    margin-top: 0.4rem;
    text-align: center;
    color: #111;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.close-panel {
    width: min(1040px, 100%);
    margin: 0 auto;
    text-align: center;
}

.close-kicker {
    display: block;
    margin-bottom: 1.25rem;
    color: var(--brand-orange);
    font-size: clamp(0.92rem, 1.35vw, 1.12rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.close-statement {
    max-width: min(780px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    text-align: center;
}

.close-statement span {
    display: block;
    color: var(--text-secondary);
    font-size: clamp(1.35rem, 2.35vw, 1.95rem);
    line-height: 1.4;
    font-weight: 600;
}

.close-cta {
    display: block;
    margin-top: 0.75rem;
    color: var(--text-primary);
    font-size: clamp(1.55rem, 2.6vw, 2.25rem);
    line-height: 1.3;
    font-weight: 800;
}

.close-panel h2 {
    color: var(--text-primary);
    font-size: clamp(2.25rem, 4.2vw, 4.3rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
}

.close-panel p {
    max-width: 850px;
    margin: 1.25rem auto 0;
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    line-height: 1.55;
}

.close-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.15rem;
}

.close-card {
    min-height: 0;
    padding: 1rem 1.05rem;
}

.investor-close {
    justify-content: safe center;
}

.close-contact-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.25rem;
}

.close-contact-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 1.65rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--btc-rgb),0.28);
    background: rgba(var(--btc-rgb),0.09);
    color: var(--text-primary);
    font-size: clamp(0.98rem, 1.2vw, 1.15rem);
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 12px 34px rgba(0,0,0,0.18);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.close-contact-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--brand-orange-rgb),0.45);
    background: rgba(var(--brand-orange-rgb),0.12);
}

.close-founder-line {
    margin-top: 2.6rem;
    text-align: center;
    color: var(--text-primary);
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    line-height: 1.4;
}

.investor-deck .slide-number,
.investor-deck .slide-counter {
    display: none !important;
}

.investor-deck .brand-badge {
    background: rgba(var(--btc-rgb), 0.08);
    border-color: rgba(var(--btc-rgb), 0.22);
}

.investor-deck .brand-badge__mark {
    background: linear-gradient(135deg, var(--btc), var(--brand-orange));
    color: #fff;
}

.investor-deck .slide-content .slide-number,
.investor-deck .progress-fill,
.investor-deck .slide-dot.active,
.investor-deck .nav-arrow,
.investor-deck .fullscreen-btn,
.investor-deck .export-btn {
    background: var(--btc);
}

.investor-deck .export-btn {
    color: #fff;
}

/* Developer survey — pain grid */
.investor-survey {
    justify-content: safe center;
    align-items: center;
    text-align: center;
}

.investor-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.investor-header--center h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 680px;
}

.investor-survey .investor-header {
    margin-bottom: 1rem;
}

.survey-kicker {
    display: inline-block;
    margin-bottom: 0.4rem;
    padding: 0.28rem 0.6rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-orange);
    background: rgba(var(--brand-orange-rgb), 0.12);
    border: 1px solid rgba(var(--brand-orange-rgb), 0.28);
    border-radius: 999px;
}

.investor-survey .investor-header h2 {
    font-size: clamp(1.35rem, 2.4vw, 2.1rem);
    max-width: 820px;
}

.survey-lead {
    max-width: 620px;
    margin-top: 0.55rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
    font-size: clamp(0.86rem, 1.1vw, 0.98rem);
    line-height: 1.5;
}

.survey-pain-grid {
    width: 100%;
    max-width: min(1140px, 100%);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.survey-pain-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.6rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-top: 2px solid rgba(var(--btc-rgb), 0.45);
    border-radius: var(--radius-sm);
    min-width: 0;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.survey-pain-card:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(var(--btc-rgb), 0.32);
    transform: translateY(-2px);
}

.survey-pain-visual {
    aspect-ratio: 16 / 9;
    border-radius: calc(var(--radius-sm) - 2px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0A0A0A;
}

.survey-pain-visual svg {
    display: block;
    width: 100%;
    height: 100%;
}

.survey-pain-card strong {
    display: block;
    text-align: center;
    color: var(--text-primary);
    font-size: clamp(0.74rem, 0.95vw, 0.88rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
    padding: 0 0.15rem 0.1rem;
}

@media (max-width: 1100px) {
    .survey-pain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .monetization-grid,
    .monetization-grid--quad {
        grid-template-columns: 1fr;
    }

    .competitive-layout {
        grid-template-columns: 1fr;
    }

    .competitive-wins-grid {
        grid-template-columns: 1fr;
    }

    .unlimited-layout {
        grid-template-columns: 1fr;
    }

    .unlimited-problem {
        grid-row: auto;
    }

    .unlimited-flow {
        grid-template-columns: 1fr;
    }

    .unlimited-upsell {
        grid-column: 1;
    }

    .skillapps-layout {
        grid-template-columns: 1fr;
    }

    .skillapps-arrow {
        transform: rotate(90deg);
        min-height: 36px;
    }

    .skillapps-pipeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }

    .skillapps-pipeline span::after {
        display: none;
    }

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

    .market-stages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .traction-progress-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .survey-pain-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .survey-pain-card strong {
        font-size: 0.68rem;
    }

    .skillapps-pipeline {
        grid-template-columns: 1fr;
        padding: 0.85rem;
    }

    .market-layer {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .market-neptor-position,
    .market-distribution {
        padding: 0.85rem;
    }

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

    .market-stage-card {
        min-height: 0;
    }

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

@media (max-height: 760px) and (min-width: 961px) {
    .investor-survey .investor-header h2 {
        font-size: clamp(1.2rem, 2vw, 1.65rem);
    }

    .survey-lead {
        font-size: 0.8rem;
    }

    .survey-pain-grid {
        gap: 0.5rem;
    }

    .survey-pain-card {
        padding: 0.45rem;
    }

    .investor-proof .proof-screen.neptor-product-frame img {
        max-height: min(40vh, 380px);
    }

    .investor-proof .proof-mini.neptor-product-frame img {
        max-height: min(26vh, 220px);
    }

    .investor-proof .proof-bullets {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .investor-proof-split .proof-frame {
        grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
        gap: 0.65rem;
    }

    .investor-proof-split .proof-copy {
        padding: 0.9rem 1rem;
        gap: 0.45rem;
    }

    .investor-proof-split .proof-copy strong {
        font-size: clamp(1.25rem, 2vw, 1.65rem);
    }

    .investor-proof-split .proof-copy p,
    .proof-investor-note p {
        font-size: 0.78rem;
    }

    .investor-proof-split .proof-bullets span {
        min-height: 42px;
        padding: 0.55rem 0.65rem;
        font-size: 0.76rem;
    }

    .market-map {
        gap: 0.65rem;
    }

    .market-stages-grid {
        gap: 0.55rem;
    }

    .market-stage-card {
        min-height: clamp(13.5rem, 28vh, 16rem);
        padding: 0.85rem;
    }

    .market-stages-summary {
        padding: 0.85rem 1rem;
        gap: 0.75rem;
    }

    .market-distribution {
        gap: 0.5rem;
        padding: 0.85rem;
    }

    .market-layer {
        min-height: 82px;
        padding: 0.65rem 0.75rem;
    }

    .market-neptor-position {
        padding: 0.9rem 1rem;
    }

    .market-difference-grid {
        margin-top: 0.75rem;
        gap: 0.45rem;
    }

    .market-difference-grid div {
        min-height: 76px;
        padding: 0.65rem 0.75rem;
    }

}

@media (max-width: 960px) {
    .investor-proof .proof-screen.neptor-product-frame img {
        max-height: min(42vh, 400px);
    }

    .investor-proof .proof-bullets {
        grid-template-columns: 1fr;
    }

    .investor-proof-split .proof-frame {
        grid-template-columns: 1fr;
    }

    .investor-proof-wallcard .investor-header h2 {
        font-size: clamp(1.65rem, 5.5vw, 2.35rem);
    }

    .investor-proof-split .proof-screen.neptor-product-frame img {
        height: 100%;
        max-height: none;
        object-fit: contain;
    }

    .investor-proof .proof-mini.neptor-product-frame img {
        max-height: min(36vh, 320px);
    }

    .investor-slide {
        padding: 1.5rem 1.25rem;
        overflow-y: auto;
        justify-content: safe center;
    }

    .investor-deck .slide {
        overflow-y: auto;
    }

    .proof-frame {
        grid-template-columns: 1fr;
    }

    .capability-board {
        grid-template-columns: 1fr;
    }

    .capability-lead {
        grid-row: auto;
    }
}

@media (max-width: 1100px) {
    .deck-topline {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.25rem;
    }

    .hero-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .comparison-shell,
    .thesis-grid,
    .economics-rail,
    .raise-proof-layout,
    .plan-layout,
    .close-grid {
        grid-template-columns: 1fr;
    }

    .raise-ask-panel,
    .raise-target-panel,
    .raise-use-panel {
        min-height: auto;
    }

    .monetization-ladder {
        grid-template-columns: 1fr;
    }

    .monetization-ladder b {
        width: 2px;
        height: 22px;
        justify-self: center;
    }

    .monetization-ladder b::after {
        right: 50%;
        top: auto;
        bottom: -1px;
        transform: translateX(50%) rotate(135deg);
    }

    .comparison-side--after {
        border-left: 0;
        border-top: 4px solid var(--brand-orange);
    }

    .proof-trio {
        grid-template-columns: 1fr;
    }

    .investor-proof-trio .proof-trio {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
        overflow-x: auto;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
    }

    .investor-proof-trio .proof-mini:nth-child(3) {
        grid-column: 1 / -1;
        width: 100%;
        max-width: none;
    }

    .economics-arrow {
        min-height: 48px;
        transform: rotate(90deg);
    }

    .team-strip-card {
        grid-template-columns: 88px minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .investor-slide {
        padding: 1.15rem 1rem;
    }

    .hero-strip {
        grid-template-columns: 1fr;
    }

    .team-strip-card {
        grid-template-columns: 1fr;
    }

    .raise-proof-layout {
        gap: 0.7rem;
    }

    .raise-ask-panel,
    .raise-target-panel,
    .raise-use-panel {
        padding: 1rem;
    }

    .fund-card {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        align-items: start;
    }

    .team-strip-avatar {
        width: 80px;
        height: 80px;
    }
}

@media (max-height: 760px) and (min-width: 961px) {
    .hero-statement {
        font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    }

    .investor-header h2 {
        font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    }

    .investor-proof .proof-screen.neptor-product-frame img {
        max-height: min(55vh, 520px);
    }

    .investor-proof .proof-mini.neptor-product-frame img {
        max-height: min(28vh, 260px);
    }

    .raise-proof-layout {
        gap: 0.65rem;
    }

    .raise-ask-panel,
    .raise-target-panel,
    .raise-use-panel {
        min-height: 365px;
        padding: 0.9rem;
    }

    .raise-ask-panel strong {
        font-size: clamp(2rem, 3.5vw, 3.4rem);
    }

    .raise-metric {
        padding: 0.55rem 0.6rem;
    }

    .fund-card {
        min-height: 68px;
        padding: 0.65rem 0.75rem;
    }

    .fund-card p {
        font-size: 0.72rem;
    }

    .investor-slide {
        padding: clamp(2rem, 3.5vh, 2.75rem) 4rem;
    }
}

/* Workshop deck: photo badge, command type, OSS lead mark */
.investor-hero .brand-badge__icon {
    border-radius: 999px;
}

.workshop-cmd {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--brand-orange);
}

.workshop-lead-mark {
    width: clamp(84px, 9vw, 120px);
    height: clamp(84px, 9vw, 120px);
    margin: auto auto clamp(1rem, 2vh, 1.5rem);
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #fff;
    background: linear-gradient(135deg, var(--btc) 0%, var(--brand-orange) 100%);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.14);
    flex-shrink: 0;
}

.investor-traction .traction-stat-strip--quad .traction-stat-card span {
    max-width: 18ch;
}

@media (max-width: 1280px) and (min-width: 1101px) {
    .investor-deck .traction-signal-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "backing stats"
            "liquidity advisors"
            "recognition recognition";
    }

    .investor-deck .traction-recognition-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   Educational workshop layouts — diagrams, flows, terminal, not pitch cards
   ═══════════════════════════════════════════════════════════════════════ */

.edu-slide {
    align-items: stretch;
    text-align: left;
    justify-content: center;
    padding: clamp(2.4rem, 4vh, 3.2rem) 4.5rem 3.5rem;
}

.edu-slide .investor-header {
    margin-bottom: 1.1rem;
}

.edu-kicker {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--brand-orange);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.edu-lead {
    margin-top: 0.4rem;
    max-width: 760px;
    color: var(--text-secondary);
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    line-height: 1.45;
}

/* Host / about me */
.edu-host {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.edu-host__photo {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(var(--btc-rgb), 0.55);
    box-shadow: 0 0 0 8px rgba(var(--btc-rgb), 0.1), 0 24px 50px rgba(0,0,0,0.35);
}

.edu-host h3 {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    line-height: 1.05;
    font-weight: 800;
}

.edu-host__role {
    display: block;
    margin: 0.35rem 0 0.75rem;
    color: var(--btc);
    font-size: 1rem;
    font-weight: 700;
}

.edu-host p {
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 1.1vw, 1.02rem);
    line-height: 1.5;
    max-width: 760px;
}

.edu-host .team-chip-row {
    margin-top: 0.85rem;
}

.edu-statline {
    width: 100%;
    max-width: 1240px;
    margin: 1.35rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.edu-statline div {
    padding: 1rem 1.1rem 0;
    text-align: left;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.edu-statline div:last-child { border-right: 0; }

.edu-statline strong {
    display: block;
    color: var(--brand-orange);
    font-size: clamp(1.7rem, 2.6vw, 2.35rem);
    font-weight: 900;
    line-height: 1;
}

.edu-statline span {
    display: block;
    margin-top: 0.35rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Horizontal process flow */
.edu-flow {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.edu-node {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.35rem;
}

.edu-node__num {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--btc), var(--brand-orange));
    box-shadow: 0 8px 20px rgba(var(--btc-rgb), 0.28);
    position: relative;
    z-index: 1;
}

.edu-node strong {
    display: block;
    margin-top: 0.7rem;
    color: var(--text-primary);
    font-size: clamp(0.82rem, 1.05vw, 1rem);
    font-weight: 750;
    line-height: 1.25;
}

.edu-node span {
    display: block;
    margin-top: 0.3rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.35;
}

.edu-join {
    width: 22px;
    flex-shrink: 0;
    height: 2.35rem;
    position: relative;
}

.edu-join::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 1.1rem;
    height: 2px;
    background: linear-gradient(90deg, var(--btc), var(--brand-orange));
    opacity: 0.7;
}

.edu-join::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 0.85rem;
    border: 6px solid transparent;
    border-left-color: var(--brand-orange);
}

.edu-flow-note {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255,255,255,0.12);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.45;
}

.edu-flow-note b { color: var(--text-primary); }

/* Git laptop vs GitHub remote */
.edu-machines {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: stretch;
}

.edu-machine {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0,0,0,0.28);
    min-width: 0;
}

.edu-machine__bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.edu-machine__bar i {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #FF3B30;
    box-shadow: 12px 0 0 #FF9500, 24px 0 0 #30D158;
    margin-right: 1.6rem;
}

.edu-machine ul {
    list-style: none;
    padding: 1.1rem 1.2rem 1.25rem;
}

.edu-machine li {
    display: flex;
    gap: 0.7rem;
    align-items: baseline;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.4;
}

.edu-machine li:last-child { border-bottom: 0; }

.edu-machine code,
.edu-term code,
.edu-cmd {
    font-family: 'JetBrains Mono', monospace;
    color: var(--brand-orange);
    font-size: 0.86em;
}

.edu-sync {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    color: var(--brand-orange);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.edu-sync b {
    font-size: 1.4rem;
    line-height: 1;
    color: var(--btc);
}

/* Terminal teaching */
.edu-split {
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.25rem;
    align-items: stretch;
}

.edu-term {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    background: #0d0d0d;
    overflow: hidden;
    min-width: 0;
}

.edu-term__bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    background: #161616;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.edu-term__bar i {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #FF3B30;
    box-shadow: 12px 0 0 #FF9500, 24px 0 0 #30D158;
    margin-right: 1.6rem;
}

.edu-term pre {
    margin: 0;
    padding: 1.15rem 1.25rem 1.3rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.78rem, 1.05vw, 0.95rem);
    line-height: 1.7;
    color: #EDEDED;
    white-space: pre-wrap;
}

.edu-term .cmt { color: #8B8B8B; }
.edu-term .ok { color: #34d399; }
.edu-term .cmd { color: var(--brand-orange); }
.edu-term .bad { color: var(--btc); font-weight: 800; }

/* Git commit-graph illustrations */
.edu-ggpair {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.edu-gg {
    margin: 0;
    padding: 0.7rem 0.85rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    background: rgba(0,0,0,0.28);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.edu-gg--danger {
    border-color: rgba(255, 59, 48, 0.45);
    background: rgba(255, 59, 48, 0.06);
}

.edu-gg figcaption {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.edu-gg figcaption code {
    text-transform: none;
    letter-spacing: 0;
    color: var(--brand-orange);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 0.78rem;
    font-weight: 700;
}

.edu-gboard {
    position: relative;
    flex: 1;
    display: grid;
    grid-template-columns: 4.1rem minmax(0, 1fr);
    grid-template-rows: 1fr 1fr;
    align-items: stretch;
    min-height: 8.4rem;
    padding: 0.15rem 0.1rem 0;
}

.edu-gboard--single {
    grid-template-rows: 1fr;
    min-height: 5.6rem;
    padding-top: 1.05rem;
}

.edu-glane {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.2;
}

.edu-glane--2 { grid-row: 2; }

.edu-ggrid {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: 1fr 1fr;
    align-items: center;
    justify-items: center;
    position: relative;
    min-height: 8.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.edu-gboard--single .edu-ggrid {
    grid-row: 1;
    grid-template-rows: 1fr;
    min-height: 5.2rem;
}

.edu-gline {
    justify-self: stretch;
    align-self: center;
    height: 4px;
    border-radius: 99px;
    z-index: 0;
    pointer-events: none;
    margin: 0 20%;
}

.edu-gline--main { background: #FF3B30; }
.edu-gline--feat { background: #FF9500; }
.edu-gline--join { background: #34d399; }
.edu-gline--ghost {
    background: repeating-linear-gradient(90deg, #555 0 7px, transparent 7px 12px);
}

.edu-gline--fork,
.edu-gline--up,
.edu-gline--ghostfork {
    height: 4px;
    align-self: center;
    justify-self: center;
    width: 72%;
    margin: 0;
    background: none;
    border-radius: 99px;
}

.edu-gline--fork {
    background: #FF9500;
    transform: rotate(32deg);
}

.edu-gline--up {
    background: #34d399;
    transform: rotate(-32deg);
}

.edu-gline--ghostfork {
    background: #666;
    transform: rotate(32deg);
}

.edu-ggrid > li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.edu-gdot {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 5px #141210;
}

.edu-gdot--main { background: #FF3B30; }
.edu-gdot--feat { background: #FF9500; }
.edu-gdot--merge { background: #34d399; color: #08110c; }
.edu-gdot--empty {
    visibility: hidden;
    box-shadow: none;
}

.edu-gdot--gone {
    background: #2a2a2a;
    color: #9a9a9a;
    box-shadow: 0 0 0 5px #141210;
}

.edu-gdot--gone::after {
    content: '';
    position: absolute;
    inset: 5px;
    background:
        linear-gradient(45deg, transparent 42%, #FF3B30 42%, #FF3B30 58%, transparent 58%),
        linear-gradient(-45deg, transparent 42%, #FF3B30 42%, #FF3B30 58%, transparent 58%);
}

.edu-gdot small {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 5px);
    transform: translateX(-50%);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--text-muted);
}

.edu-gdot small.is-now { color: #34d399; }
.edu-gdot small.is-warn { color: var(--btc); }

.edu-gg .edu-term {
    flex: 1;
    margin: 0.15rem 0 0;
}

.edu-gg .edu-term pre {
    padding: 0.85rem 1rem 1rem;
    font-size: 0.78rem;
    line-height: 1.55;
}

.edu-gg__cmd {
    margin: 0.35rem 0 0;
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.35;
}

.edu-gg__list {
    list-style: none;
    margin-top: 0.45rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.edu-gg__list li {
    position: relative;
    padding-left: 0.9rem;
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.35;
}

.edu-gg__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-orange);
}

.edu-glegend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    margin-top: 0.7rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.edu-glegend span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.edu-glegend__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.edu-git-rules {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.9rem;
}

.edu-git-rules li {
    display: grid;
    grid-template-columns: 2.1rem minmax(0, 1fr);
    gap: 0.8rem;
    align-items: start;
}

.edu-git-rules b {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--btc), var(--brand-orange));
    font-size: 0.82rem;
    font-weight: 800;
}

.edu-git-rules strong {
    display: block;
    font-size: 1rem;
    line-height: 1.25;
}

.edu-git-rules span {
    display: block;
    margin-top: 0.2rem;
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.4;
}

.edu-git-rules code {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    color: var(--brand-orange);
    font-size: 0.86em;
}

.edu-legend {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
}

.edu-legend li {
    list-style: none;
    display: grid;
    grid-template-columns: 8.6rem minmax(0, 1fr);
    gap: 0.75rem;
    align-items: baseline;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.edu-legend code {
    font-family: 'JetBrains Mono', monospace;
    color: var(--brand-orange);
    font-size: 0.82rem;
}

/* Contribution loop as a 2-row pipeline */
.edu-loop {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.edu-loop-row {
    display: flex;
    align-items: stretch;
    position: relative;
}

.edu-loop-row::before {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    top: 6px;
    height: 3px;
    background: linear-gradient(90deg, var(--btc), var(--brand-orange));
    border-radius: 99px;
}

.edu-loop-step {
    flex: 1;
    min-width: 0;
    position: relative;
    padding: 0 0.4rem 0;
    text-align: center;
}

.edu-loop-step::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    background: #0A0A0A;
    border: 3px solid var(--brand-orange);
    position: relative;
    z-index: 1;
}

.edu-loop-step em {
    display: block;
    font-style: normal;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--brand-orange);
}

.edu-loop-step strong {
    display: block;
    margin-top: 0.35rem;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 800;
}

.edu-loop-step span {
    display: block;
    margin-top: 0.3rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.edu-loop-track {
    height: 4px;
    margin: 0.35rem 8% 0.15rem;
    background: linear-gradient(90deg, var(--btc), var(--brand-orange));
    border-radius: 99px;
    position: relative;
}

.edu-loop-track i {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0A0A0A;
    border: 3px solid var(--btc);
    transform: translate(-50%, -50%);
}

/* GitHub repo map */
.edu-repo {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0,0,0,0.25);
}

.edu-repo__tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
}

.edu-repo__tabs span {
    padding: 0.85rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 650;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
}

.edu-repo__tabs span.on {
    color: var(--text-primary);
    border-bottom-color: var(--btc);
}

.edu-repo__body {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    min-height: 280px;
}

.edu-readme {
    padding: 1.2rem 1.4rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.edu-readme h3 {
    font-size: 1.35rem;
    margin-bottom: 0.55rem;
}

.edu-readme p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.45;
}

.edu-side {
    padding: 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.edu-callout {
    padding-left: 0.85rem;
    border-left: 3px solid var(--btc);
}

.edu-callout b {
    display: block;
    font-size: 0.92rem;
}

.edu-callout span {
    display: block;
    margin-top: 0.2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.35;
}

.edu-callout--warm { border-left-color: var(--brand-orange); }

/* Decision flow */
.edu-decision {
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.edu-dstep {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.4rem;
}

.edu-dstep__box {
    width: 100%;
    max-width: 160px;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 0.6rem;
    border: 1.5px solid rgba(var(--brand-orange-rgb), 0.45);
    background: rgba(var(--brand-orange-rgb), 0.08);
    border-radius: 8px;
    font-weight: 750;
    font-size: 0.88rem;
    line-height: 1.25;
}

.edu-dstep__box--ask {
    border-radius: 999px;
    border-color: rgba(var(--btc-rgb), 0.5);
    background: rgba(var(--btc-rgb), 0.1);
}

.edu-dstep p {
    margin-top: 0.65rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.35;
}

.edu-darrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: var(--btc);
    font-size: 1.35rem;
    padding-bottom: 2.4rem;
}

/* Vertical recipe */
.edu-recipe {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 1.1rem;
}

.edu-recipe::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--btc), var(--brand-orange));
}

.edu-recipe li {
    list-style: none;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 1rem;
    padding: 0.65rem 0;
    position: relative;
}

.edu-recipe b {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0A0A0A;
    border: 2px solid var(--btc);
    color: var(--text-primary);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    z-index: 1;
}

.edu-recipe strong {
    display: block;
    font-size: 1.05rem;
}

.edu-recipe span {
    display: block;
    margin-top: 0.2rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.4;
}

/* Fake PR */
.edu-pr {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0,0,0,0.22);
}

.edu-pr__title {
    padding: 1rem 1.25rem 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.edu-pr__title em {
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #34d399;
}

.edu-pr__title h3 {
    margin-top: 0.35rem;
    font-size: 1.25rem;
}

.edu-pr__meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.45rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.edu-pr__body {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
}

.edu-pr__body > div {
    padding: 1.1rem 1.25rem;
}

.edu-pr__body > div:first-child {
    border-right: 1px solid rgba(255,255,255,0.08);
}

.edu-pr__body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 0.55rem;
}

.edu-tag {
    display: inline-block;
    margin-right: 0.35rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--brand-orange-rgb), 0.35);
    color: var(--brand-orange);
    font-size: 0.7rem;
    font-weight: 700;
}

.edu-checks {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.edu-checks span::before {
    content: '✓  ';
    color: #34d399;
    font-weight: 800;
}

/* Do / don't */
.edu-split-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.edu-split-list h3 {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.edu-split-list--no h3 { color: var(--btc); }
.edu-split-list--yes h3 { color: #34d399; }

.edu-split-list li {
    list-style: none;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.edu-split-list li strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

/* Timeline */
.edu-time {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.edu-time::before {
    content: '';
    position: absolute;
    left: 6%;
    right: 6%;
    top: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--btc), var(--brand-orange));
}

.edu-time article {
    text-align: center;
    padding-top: 0.2rem;
}

.edu-time i {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0A0A0A;
    border: 3px solid var(--brand-orange);
    position: relative;
    z-index: 1;
}

.edu-time em {
    display: block;
    margin-top: 0.7rem;
    font-style: normal;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand-orange);
    letter-spacing: 0.08em;
}

.edu-time strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1rem;
}

.edu-time span {
    display: block;
    margin-top: 0.3rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

/* Checklist */
.edu-check {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 2.5rem;
}

.edu-check li {
    list-style: none;
    display: grid;
    grid-template-columns: 1.4rem minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.edu-check i {
    width: 1.15rem;
    height: 1.15rem;
    border: 2px solid var(--brand-orange);
    border-radius: 4px;
    margin-top: 0.15rem;
}

.edu-oss-chain {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.edu-oss-chain > div {
    flex: 1;
    max-width: 200px;
    text-align: center;
    padding: 1.1rem 0.8rem;
}

.edu-oss-chain strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.edu-oss-chain span {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.35;
}

.edu-oss-chain b {
    flex-shrink: 0;
    color: var(--btc);
    font-size: 1.5rem;
}

.edu-path {
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.edu-path article {
    flex: 1;
    padding: 0.4rem 1.1rem;
    border-left: 2px solid rgba(var(--btc-rgb), 0.45);
}

.edu-path article:first-child { border-left-width: 4px; }

.edu-path em {
    display: block;
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-orange);
}

.edu-path strong {
    display: block;
    margin: 0.4rem 0 0.3rem;
    font-size: 1.15rem;
}

.edu-path span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

.edu-host {
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 1.5rem;
}

.edu-host__photo {
    width: 168px;
    height: 168px;
}

.edu-host h3 {
    font-size: clamp(1.7rem, 2.8vw, 2.35rem);
}

.edu-host p {
    font-size: 0.9rem;
    line-height: 1.42;
}

.edu-host .team-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.7rem;
}

.edu-host .team-chip {
    font-size: 0.72rem;
    padding: 0.38rem 0.65rem;
    width: auto;
}

.edu-statline {
    margin-top: 1rem;
}

.edu-statline div {
    padding: 0.8rem 1rem 0;
}

/* How I got here — all PDF programs / jobs / stats */
.edu-journey {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.edu-journey article {
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 3px solid var(--btc);
    border-radius: 12px;
    background: rgba(0,0,0,0.22);
    min-width: 0;
}

.edu-journey article:nth-child(even) {
    border-top-color: var(--brand-orange);
}

.edu-journey em {
    display: block;
    font-style: normal;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-orange);
}

.edu-journey strong {
    display: block;
    margin: 0.35rem 0 0.3rem;
    font-size: clamp(0.88rem, 1.05vw, 1.05rem);
    line-height: 1.2;
}

.edu-journey span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.78rem;
    line-height: 1.35;
}

.edu-programs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

.edu-programs article {
    padding: 0.75rem 0.85rem;
    border-left: 3px solid var(--btc);
    background: rgba(255,255,255,0.03);
    border-radius: 0 10px 10px 0;
    min-width: 0;
}

.edu-programs article:nth-child(even) {
    border-left-color: var(--brand-orange);
}

.edu-programs em {
    display: block;
    font-style: normal;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-orange);
}

.edu-programs strong {
    display: block;
    margin: 0.3rem 0 0.25rem;
    font-size: 0.95rem;
    line-height: 1.2;
}

.edu-programs span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.76rem;
    line-height: 1.35;
}

@media (max-width: 1100px) {
    .edu-host,
    .edu-machines,
    .edu-split,
    .edu-repo__body,
    .edu-pr__body,
    .edu-split-list,
    .edu-check,
    .edu-ggpair {
        grid-template-columns: 1fr;
    }

    .edu-host { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .edu-host p { margin-left: auto; margin-right: auto; }
    .edu-host .team-chip-row { grid-template-columns: 1fr; }
    .edu-statline { grid-template-columns: repeat(2, 1fr); }
    .edu-flow { flex-wrap: wrap; row-gap: 1rem; }
    .edu-join { display: none; }
    .edu-time { grid-template-columns: 1fr 1fr; }
    .edu-time::before { display: none; }
    .edu-journey,
    .edu-programs { grid-template-columns: 1fr 1fr; }
    .edu-why,
    .edu-tipgrid,
    .edu-proglist,
    .edu-choice { grid-template-columns: 1fr; }
}

.edu-bio {
    margin: 0.4rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.32rem;
}

.edu-bio li {
    color: var(--text-secondary);
    font-size: clamp(0.78rem, 1vw, 0.9rem);
    line-height: 1.32;
}

.edu-bio li::before {
    content: '• ';
    color: var(--brand-orange);
    font-weight: 800;
}

.edu-why,
.edu-tipgrid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.edu-why article,
.edu-tipgrid article {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    background: rgba(0,0,0,0.22);
}

.edu-why strong,
.edu-tipgrid strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.02rem;
}

.edu-why span,
.edu-tipgrid span {
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.4;
}

.edu-money {
    width: 100%;
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 24rem) auto;
    justify-content: start;
    gap: 2.4rem;
    align-items: center;
    padding-right: 2.6rem;
}

.edu-money__copy {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 28rem;
}

.edu-money__copy article {
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid var(--btc);
    border-radius: 12px;
    background: rgba(0,0,0,0.22);
}

.edu-money__copy article:nth-child(2) {
    border-left-color: var(--brand-orange);
}

.edu-money__copy strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 750;
}

.edu-money__copy span {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.4;
}

.edu-money__shot {
    margin: 0;
    height: auto;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.edu-money__shot img {
    display: block;
    height: min(530px, 74vh);
    width: auto;
    max-width: 270px;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.edu-points {
    width: 100%;
    display: grid;
    gap: 0.7rem;
}

.edu-points li {
    display: grid;
    grid-template-columns: 2.2rem minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
    list-style: none;
}

.edu-points b {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--btc), var(--brand-orange));
    font-size: 0.85rem;
}

.edu-points strong { display: block; font-size: 1.05rem; }
.edu-points span { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.4; }

.edu-choice {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.edu-choice article {
    padding: 1.1rem 1rem;
    text-align: center;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.25);
}

.edu-choice em {
    display: block;
    font-style: normal;
    color: var(--brand-orange);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.edu-choice strong { font-size: 1.05rem; line-height: 1.3; }

.edu-proglist {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 1.4rem;
}

.edu-proglist li {
    list-style: none;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.edu-proglist li::before {
    content: '▸ ';
    color: var(--btc);
}

.edu-break {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.edu-break h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
}

.edu-break p {
    margin-top: 0.8rem;
    color: var(--text-secondary);
    font-size: 1.15rem;
}

.edu-stipend {
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255,149,0,0.28);
    border-radius: 18px;
    background: radial-gradient(circle at 50% 40%, rgba(255,59,48,0.18), transparent 60%);
}

.edu-stipend strong {
    font-size: clamp(2.2rem, 4.4vw, 3.6rem);
    font-weight: 900;
    color: var(--brand-orange);
}

.edu-stipend span {
    margin-top: 0.7rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

ol.edu-points { margin: 0; padding: 0; }
ul.edu-proglist { margin: 0; padding: 0; }

/* ═══════════════════════════════════════════════════════════════════════
   16:9 stage scales to the window. Phone width reflows instead of shrinking.
   ═══════════════════════════════════════════════════════════════════════ */

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.ppt-container.investor-deck {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-stage {
    width: 1280px;
    height: 720px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    transform-origin: center center;
    transform: scale(min(calc(100vw / 1280), calc(100vh / 720)));
}

html.deck-fit .slide-stage .slide,
html.deck-fit .investor-deck .slide.investor-slide,
html.deck-fit .investor-deck .slide.investor-hero,
html.deck-fit .investor-deck .slide.investor-close {
    width: 1280px;
    height: 720px;
    padding: 36px 56px 52px;
    overflow: hidden;
}

html.deck-fit .close-end {
    gap: 0.7rem;
}

html.deck-fit .close-end__up {
    font-size: 1.55rem;
}

html.deck-fit .close-end__down {
    font-size: 1.15rem;
}

html.deck-fit .close-qr {
    width: 220px;
    margin: 0.2rem 0;
}

html.deck-fit .close-end .close-founder-line {
    font-size: 0.88rem;
}

html.deck-fit .edu-slide {
    padding: 36px 56px 52px;
}

html.deck-fit .edu-slide > *:not(.grid-overlay) {
    width: 100%;
    max-width: none;
}

html.deck-fit .edu-slide .investor-header {
    margin-bottom: 0.85rem;
}

html.deck-fit .edu-slide .investor-header h2 {
    max-width: none;
    font-size: 1.85rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
}

html.deck-fit .edu-kicker {
    font-size: 0.78rem;
    margin-bottom: 0.35rem;
}

html.deck-fit .edu-lead {
    max-width: 42rem;
    margin-top: 0.35rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

html.deck-fit .hero-title-line {
    font-size: 3.15rem;
}

html.deck-fit .hero-session {
    font-size: 1rem;
}

html.deck-fit .hero-session strong {
    font-size: 1.18rem;
}

html.deck-fit .hero-logos {
    width: 520px;
    margin-top: 1.15rem;
}

html.deck-fit .hero-logo--cgc img,
html.deck-fit .hero-logo--gsoc img,
html.deck-fit .hero-logo--sob img {
    width: 42px;
    height: 42px;
}

html.deck-fit .hero-logo--cgc img {
    width: auto;
    height: 46px;
}

html.deck-fit .hero-subtitle {
    max-width: 36rem;
    font-size: 1.05rem;
}

html.deck-fit .hero-stack-item {
    font-size: 0.78rem;
    padding: 0.4rem 0.85rem;
}

html.deck-fit .edu-host {
    grid-template-columns: 176px minmax(0, 1fr) !important;
    gap: 1.4rem !important;
    justify-items: start !important;
    text-align: left !important;
    align-items: center;
}

html.deck-fit .edu-host__photo {
    width: 176px;
    height: 176px;
    max-width: 176px;
    max-height: 176px;
}

html.deck-fit .edu-host h3 {
    font-size: 1.85rem;
}

html.deck-fit .edu-host__role {
    font-size: 0.92rem;
    margin: 0.25rem 0 0.45rem;
}

html.deck-fit .edu-host p {
    font-size: 0.92rem;
    line-height: 1.4;
    max-width: 38rem;
}

html.deck-fit .edu-host .team-chip-row {
    margin-top: 0.7rem;
    gap: 0.4rem;
}

html.deck-fit .edu-host .team-chip {
    font-size: 0.72rem;
    padding: 0.32rem 0.65rem;
}

html.deck-fit .edu-statline {
    margin-top: 0.85rem;
}

html.deck-fit .edu-statline strong {
    font-size: 1.55rem;
}

html.deck-fit .edu-statline span {
    font-size: 0.68rem;
}

html.deck-fit .edu-why,
html.deck-fit .edu-tipgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.55rem;
}

html.deck-fit .edu-why article,
html.deck-fit .edu-tipgrid article {
    padding: 0.7rem 0.85rem;
    border-left: 3px solid var(--btc);
    border-radius: 12px;
}

html.deck-fit .edu-why article:nth-child(even),
html.deck-fit .edu-tipgrid article:nth-child(even) {
    border-left-color: var(--brand-orange);
}

html.deck-fit .edu-why strong,
html.deck-fit .edu-tipgrid strong {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

html.deck-fit .edu-why span,
html.deck-fit .edu-tipgrid span {
    font-size: 0.8rem;
    line-height: 1.35;
}

html.deck-fit .edu-money {
    gap: 2.2rem;
    justify-content: start;
    padding-right: 2.8rem;
}

html.deck-fit .edu-money__copy article {
    padding: 0.75rem 0.9rem;
}

html.deck-fit .edu-money__copy strong {
    font-size: 1rem;
}

html.deck-fit .edu-money__copy span {
    font-size: 0.82rem;
}

html.deck-fit .edu-money__shot {
    margin-top: 0;
}

html.deck-fit .edu-money__shot img {
    height: 530px;
    max-width: 270px;
}

html.deck-fit .edu-points {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.55rem 1.25rem;
}

html.deck-fit .edu-points b {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.78rem;
}

html.deck-fit .edu-points strong {
    font-size: 0.95rem;
}

html.deck-fit .edu-points span {
    font-size: 0.8rem;
}

html.deck-fit .edu-choice {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.7rem;
}

html.deck-fit .edu-choice article {
    padding: 1rem 0.85rem;
}

html.deck-fit .edu-choice em {
    font-size: 0.72rem;
}

html.deck-fit .edu-choice strong {
    font-size: 1.05rem;
}

html.deck-fit .edu-proglist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

html.deck-fit .edu-proglist li {
    padding: 0.42rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
    font-weight: 650;
    line-height: 1.3;
}

html.deck-fit .edu-proglist li::before {
    content: '';
}

html.deck-fit .edu-node strong {
    font-size: 0.92rem;
}

html.deck-fit .edu-node span {
    font-size: 0.75rem;
}

html.deck-fit .edu-flow-note {
    font-size: 0.9rem;
    margin-top: 1rem;
}

html.deck-fit .edu-time {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 0.4rem;
}

html.deck-fit .edu-time::before {
    display: block;
}

html.deck-fit .edu-time article {
    min-width: 0;
    padding: 0 0.25rem;
    text-align: center;
    border: 0;
    background: none;
}

html.deck-fit .edu-time i {
    display: inline-block;
}

html.deck-fit .edu-time em {
    font-size: 0.7rem;
    margin-top: 0.55rem;
}

html.deck-fit .edu-time strong {
    font-size: 0.92rem;
}

html.deck-fit .edu-time span {
    font-size: 0.75rem;
    overflow-wrap: anywhere;
}

html.deck-fit .edu-path {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

html.deck-fit .edu-path strong {
    font-size: 1rem;
}

html.deck-fit .edu-path span {
    font-size: 0.8rem;
}

html.deck-fit .edu-decision {
    flex-wrap: nowrap;
}

html.deck-fit .edu-darrow {
    display: flex;
}

html.deck-fit .edu-dstep {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
}

html.deck-fit .edu-dstep__box {
    max-width: none;
    min-height: 4.4rem;
    font-size: 0.88rem;
    padding: 0.6rem 0.45rem;
}

html.deck-fit .edu-dstep p {
    font-size: 0.74rem;
}

html.deck-fit .edu-split-list {
    grid-template-columns: 1fr 1fr !important;
}

html.deck-fit .edu-split-list h3 {
    font-size: 0.78rem;
}

html.deck-fit .edu-split-list li {
    font-size: 0.88rem;
    padding: 0.5rem 0;
}

html.deck-fit .edu-machines,
html.deck-fit .edu-split {
    grid-template-columns: minmax(0, 1.15fr) 72px minmax(0, 1fr) !important;
}

html.deck-fit .edu-split {
    grid-template-columns: 1.15fr 0.85fr !important;
}

html.deck-fit .edu-machine li,
html.deck-fit .edu-legend li {
    font-size: 0.88rem;
}

html.deck-fit .edu-term pre {
    font-size: 0.78rem;
    line-height: 1.55;
}

html.deck-fit .edu-gg .edu-term pre {
    font-size: 0.72rem;
    line-height: 1.45;
    padding: 0.7rem 0.85rem 0.8rem;
}

html.deck-fit .edu-ggpair {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.85rem;
}

html.deck-fit .edu-gboard {
    min-height: 7.4rem;
}

html.deck-fit .edu-gboard--single {
    min-height: 4.8rem;
}

html.deck-fit .edu-ggrid {
    min-height: 7.2rem;
}

html.deck-fit .edu-gboard--single .edu-ggrid {
    min-height: 4.6rem;
}

html.deck-fit .edu-gdot {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
}

html.deck-fit .edu-gg {
    padding: 0.55rem 0.7rem 0.6rem;
}

html.deck-fit .edu-gg figcaption {
    font-size: 0.68rem;
}

html.deck-fit .edu-gg__cmd,
html.deck-fit .edu-gg__list li {
    font-size: 0.78rem;
}

html.deck-fit .edu-glegend {
    margin-top: 0.5rem;
    font-size: 0.7rem;
}

html.deck-fit .edu-git-rules {
    gap: 0.7rem;
}

html.deck-fit .edu-git-rules strong {
    font-size: 0.95rem;
}

html.deck-fit .edu-git-rules span {
    font-size: 0.8rem;
}

html.deck-fit .edu-loop-step strong {
    font-size: 1rem;
}

html.deck-fit .edu-loop-step span {
    font-size: 0.75rem;
}

html.deck-fit .edu-stipend {
    min-height: 0;
    flex: 1;
    padding: 1.5rem;
}

html.deck-fit .edu-stipend strong {
    font-size: 2.1rem;
}

html.deck-fit .edu-stipend span {
    font-size: 1rem;
}

html.deck-fit .edu-break h2 {
    font-size: 3rem;
}

html.deck-fit .edu-break p {
    font-size: 1.1rem;
}

html.deck-fit .close-statement span {
    font-size: 1.35rem;
}

html.deck-fit .close-cta {
    font-size: 1.55rem;
}

html.deck-fit .close-contact-pill {
    font-size: 0.85rem;
}

html.deck-fit .nav-arrow {
    width: 42px;
    height: 42px;
}

/* Phone: real stacked page, not a tiny scaled slide */
html.deck-reflow,
html.deck-reflow body {
    height: auto;
    min-height: 100%;
    overflow: auto;
}

html.deck-reflow .ppt-container.investor-deck {
    display: block;
    height: 100vh;
    min-height: 100vh;
}

html.deck-reflow .slide-stage {
    width: 100%;
    height: 100%;
    transform: none !important;
}

html.deck-reflow .slide {
    width: 100%;
    height: 100%;
    padding: 1.15rem 1.1rem 4.6rem;
    overflow-x: hidden;
    overflow-y: auto;
}

html.deck-reflow .edu-slide .investor-header h2 {
    font-size: 1.55rem;
}

html.deck-reflow .hero-title-line {
    font-size: 2.2rem;
}

html.deck-reflow .hero-logos {
    width: 100%;
    flex-wrap: wrap;
    gap: 1.1rem;
}

html.deck-reflow .edu-host,
html.deck-reflow .edu-why,
html.deck-reflow .edu-tipgrid,
html.deck-reflow .edu-points,
html.deck-reflow .edu-choice,
html.deck-reflow .edu-path,
html.deck-reflow .edu-split,
html.deck-reflow .edu-split-list,
html.deck-reflow .edu-machines,
html.deck-reflow .edu-check,
html.deck-reflow .edu-time,
html.deck-reflow .edu-ggpair {
    grid-template-columns: 1fr !important;
}

html.deck-reflow .edu-money {
    grid-template-columns: 1fr;
    justify-content: center;
}

html.deck-reflow .edu-money__shot {
    margin-top: 0.4rem;
}

html.deck-reflow .edu-money__shot img {
    height: 380px;
    max-width: 190px;
    margin: 0 auto;
}

html.deck-reflow .close-end {
    gap: 0.75rem;
}

html.deck-reflow .close-qr {
    width: 180px;
}

html.deck-reflow .edu-host {
    justify-items: center;
    text-align: center;
}

html.deck-reflow .edu-host p {
    margin-left: auto;
    margin-right: auto;
}

html.deck-reflow .edu-host .team-chip-row {
    justify-content: center;
}

html.deck-reflow .edu-statline {
    grid-template-columns: 1fr 1fr;
}

html.deck-reflow .edu-bio {
    text-align: left;
    width: 100%;
}

html.deck-reflow .edu-host__photo {
    width: 120px;
    height: 120px;
}

html.deck-reflow .edu-join,
html.deck-reflow .edu-darrow,
html.deck-reflow .edu-time::before,
html.deck-reflow .edu-loop-row::before {
    display: none;
}

html.deck-reflow .edu-decision {
    flex-wrap: wrap;
}

html.deck-reflow .edu-dstep {
    flex: 1 1 100%;
}

html.deck-reflow .edu-proglist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

html.deck-reflow .edu-proglist li {
    font-size: 0.9rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
}

html.deck-reflow .edu-proglist li::before {
    content: '';
}

html.deck-reflow .nav-arrow {
    display: flex !important;
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 1.1rem;
    transform: none;
}

html.deck-reflow .nav-arrow.prev { left: 0.65rem; }
html.deck-reflow .nav-arrow.next { right: 0.65rem; }
html.deck-reflow .keyboard-hint { display: none; }
