@import url("cyber-rainbow-neon.css?v=3.6.0");

/* ============================================================
   NEURALOG TESSERACT · LUXURY STYLESHEET
   Deep Obsidian, Liquid Gold, Titanium White & Matrix Rain
   ============================================================ */

:root {
    --bg-obsidian: #030712;
    --bg-surface: rgba(11, 15, 25, 0.90);
    --bg-card: rgba(13, 18, 30, 0.88);
    --gold-primary: #ffd700;
    --gold-light: #fef08a;
    --gold-bright: #ffb700;
    --gold-dark: #f59e0b;
    --gold-glow: rgba(0, 240, 255, 0.45);
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --border-gold: rgba(255, 255, 255, 0.12);
    --border-gold-hover: rgba(0, 240, 255, 0.65);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', Consolas, monospace;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Foundation */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-obsidian);
    color: var(--text-white);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

body {
    background: var(--bg-obsidian);
    min-height: 100vh;
    line-height: 1.65;
    position: relative;
    overflow-x: hidden;
}

/* Matrix Background Canvas */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
}

/* Site Content Wrapper (above canvas) */
.site-wrapper {
    position: relative;
    z-index: 2;
}

/* Container */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.75rem;
}

/* Typography Utilities */
.gold-gradient-text {
    background: linear-gradient(135deg, #b45309 0%, #d97706 45%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 800;
}

.gold-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-light);
    backdrop-filter: blur(12px);
    margin-bottom: 1.25rem;
}

/* Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: #0a0a0a;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover {
    background: linear-gradient(135deg, #ffffff, var(--gold-bright));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    color: #000000;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    cursor: pointer;
}
.btn-glass:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--gold-primary);
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* ============================================================
   EXECUTIVE HEADER
   ============================================================ */
.master-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-gold);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.logo-symbol {
    font-size: 1.6rem;
    color: var(--gold-primary);
    filter: drop-shadow(0 0 8px var(--gold-bright));
    animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.brand-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #090d16;
}
.brand-name span { color: #0099e6; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
}
.nav-links a {
    display: block;
    padding: 0.5rem 1rem;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
    color: #090d16;
    background: rgba(15, 23, 42, 0.06);
}
.nav-links a.highlight-brain {
    color: var(--gold-light);
    border: 1px solid rgba(201, 168, 76, 0.25);
    background: rgba(201, 168, 76, 0.08);
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* ============================================================
   HERO SECTION & 4D TESSERACT
   ============================================================ */
.hero-tesseract {
    padding: calc(var(--header-height) + 1.8rem) 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.hero-container-top {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-top-masthead {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 1.2rem;
}

.hero-top-masthead .gold-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #e5c365;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 0.35rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display, 'Cinzel', serif);
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: #050811;
    margin: 0 0 0.8rem;
}

.hero-positioning {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #0f172a;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}

.hero-roles-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.8rem;
    margin-bottom: 1rem;
}

.role-pill {
    font-size: 0.82rem;
    font-weight: 600;
    color: #0f172a;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.16);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.role-sep {
    color: var(--gold-dark, #c9a84c);
    font-weight: 700;
}

/* GRAND 3D TESSERACT STAGE — ENLARGED ABOVE-THE-FOLD MASTER TOOL */
.hero-tesseract-master-stage {
    width: 100%;
    margin: 0 0 2.5rem;
}

.tesseract-grand-card {
    background: radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.11) 0%, rgba(10, 10, 10, 0.96) 65%, #050505 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 50px rgba(212, 175, 55, 0.1), inset 0 0 40px rgba(212, 175, 55, 0.04);
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.tesseract-grand-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 60px rgba(212, 175, 55, 0.16);
}

/* TOP HUD BAR */
.tesseract-hud-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1.4rem;
    background: rgba(12, 12, 12, 0.88);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 0.78rem;
    flex-wrap: wrap;
}

.tesseract-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono, monospace);
    font-weight: 600;
    color: #e5c365;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pulse-dot-gold {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffd700;
    animation: goldPulse 2s infinite;
}

@keyframes goldPulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px #ffd700; }
    50% { transform: scale(1.3); opacity: 0.7; box-shadow: 0 0 16px #ffd700; }
}

.tesseract-hud-interaction-hint {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tesseract-hud-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tesseract-btn-action {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    font-family: var(--font-mono, monospace);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tesseract-btn-action:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-1px);
}

/* 3D CANVAS VIEWPORT */
.tesseract-grand-viewport {
    width: 100%;
    height: 600px;
    position: relative;
    cursor: grab;
}

.tesseract-grand-viewport:active {
    cursor: grabbing;
}

#tesseract-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* DYNAMIC HOVER TOOLTIP */
.tesseract-node-tooltip {
    position: absolute;
    transform: translate(-50%, -100%);
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid #ffd700;
    border-radius: 8px;
    padding: 0.65rem 0.95rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.25);
    pointer-events: none;
    z-index: 20;
    min-width: 180px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.tnt-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.tnt-arrow {
    color: #ffd700;
}

.tnt-tag {
    font-size: 0.75rem;
    color: #e5c365;
    font-family: var(--font-mono, monospace);
    margin-bottom: 0.25rem;
}

.tnt-action {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}

/* QUICK VENTURE PILLS BAR */
.tesseract-venture-pills {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1px;
    background: rgba(212, 175, 55, 0.15);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.t-node-pill {
    background: rgba(14, 14, 14, 0.92);
    border: none;
    padding: 0.7rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ffffff;
    text-align: center;
}

.t-node-pill:hover {
    background: rgba(212, 175, 55, 0.18);
    transform: translateY(-2px);
}

.t-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-bottom: 2px;
}

.t-pill-dot.gold { background: #e5c365; box-shadow: 0 0 6px #e5c365; }
.t-pill-dot.gold-bright { background: #ffd700; box-shadow: 0 0 8px #ffd700; }
.t-pill-dot.white { background: #ffffff; box-shadow: 0 0 6px #ffffff; }
.t-pill-dot.gold-dark { background: #c9a84c; box-shadow: 0 0 6px #c9a84c; }

.t-pill-name {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.t-pill-sub {
    font-size: 0.65rem;
    color: #e5c365;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* HERO BOTTOM ACTIONS & PROOF WALL */
.hero-bottom-actions {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subheadline-bold {
    font-family: var(--font-display, 'Cinzel', serif);
    font-size: clamp(1.4rem, 2.8vw, 2.1rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
}

.hero-support {
    font-size: 1.05rem;
    color: var(--gold-light, #ffd700);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.hero-tagline-quote {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.1rem;
    margin-bottom: 1.2rem;
}

.hero-sub-cta {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.8rem;
}

.hero-sub-cta-link {
    color: #ffd700;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
    margin-left: 0.4rem;
    transition: color 0.2s ease;
}

.hero-sub-cta-link:hover {
    color: #ffffff;
}

/* PROOF WALL GRID */
.proof-wall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    padding-top: 2rem;
}

.proof-box {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
}

.proof-box:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.proof-number {
    font-family: var(--font-display, 'Cinzel', serif);
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
}

.proof-label {
    font-size: 0.78rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* RESPONSIVE MEDIA QUERIES FOR HERO TESSERACT */
@media (max-width: 1024px) {
    .tesseract-grand-viewport {
        height: 500px;
    }
    .tesseract-venture-pills {
        grid-template-columns: repeat(4, 1fr);
    }
    .proof-wall-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-tesseract {
        padding-top: calc(var(--header-height) + 1.2rem);
        padding-bottom: 3rem;
    }
    .tesseract-grand-viewport {
        height: 380px;
    }
    .tesseract-hud-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
    .tesseract-hud-interaction-hint {
        display: none;
    }
    .tesseract-venture-pills {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    .hero-cta-group .btn-gold,
    .hero-cta-group .btn-glass {
        width: 100%;
        text-align: center;
    }
    .proof-wall-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ECOSYSTEM UNIVERSE GRID (THE 8 BUSINESS NODES)
   ============================================================ */
.section-universe {
    padding: 6rem 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem;
}
.section-head h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}
.section-head p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.universe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.universe-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 2rem 1.6rem;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
}
.universe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: var(--transition);
}
.universe-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold-hover);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 24px var(--gold-glow);
}
.universe-card:hover::before {
    opacity: 1;
}

.card-node-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-mono);
    margin-bottom: 1rem;
}
.card-node-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
}

.universe-card h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: #ffffff;
    margin-bottom: 0.6rem;
}
.universe-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-action {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}
.universe-card:hover .card-action {
    color: var(--gold-bright);
    transform: translateX(4px);
}

/* ============================================================
   CATALOGO BEST SELLER (LIBRO DELTA & CRESCITA 81)
   ============================================================ */
.section-books {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0,0.95), rgba(16,19,26,0.95));
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.books-featured-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.book-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.book-cover-3d {
    max-width: 380px;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 35px var(--gold-glow);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: var(--transition);
}
.book-cover-3d:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.03);
}

.book-info h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}
.book-meta-chips {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.chip {
    padding: 0.25rem 0.75rem;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--gold-light);
    font-weight: 600;
}
.book-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.book-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================================
   METODO ABC & LEAD CONVERSION BRIEFING
   ============================================================ */
.section-briefing {
    padding: 6rem 0;
}

.briefing-box {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    backdrop-filter: blur(20px);
}

.briefing-text h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
}
.briefing-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.briefing-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.form-input {
    width: 100%;
    padding: 1rem 1.4rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    transition: var(--transition);
}
.form-input:focus {
    outline: none;
    border-color: var(--gold-bright);
    box-shadow: 0 0 15px var(--gold-glow);
}
.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============================================================
   NEURALOG TESSERACT HUD & MODAL WIDGET
   ============================================================ */
.neuralog-pill {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1.4rem;
    background: rgba(10, 10, 10, 0.88);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    cursor: pointer;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 20px var(--gold-glow);
    transition: var(--transition);
}
.neuralog-pill:hover {
    transform: translateY(-3px) scale(1.04);
    border-color: var(--gold-bright);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}
.pill-pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffd700;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    animation: pulseGlow 1.8s infinite;
}
@keyframes pulseGlow { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.85); } }
.pill-icon { font-size: 1.25rem; }
.pill-label { font-weight: 700; font-size: 0.88rem; color: #ffffff; }
.pill-status { font-size: 0.72rem; color: #f5d77f; font-family: var(--font-mono); }

/* Modal Terminal */
.neuralog-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.neuralog-modal.open {
    opacity: 1;
    visibility: visible;
}

.neuralog-window {
    width: 100%;
    max-width: 960px;
    height: 640px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9), 0 0 40px var(--gold-glow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: var(--transition);
}
.neuralog-modal.open .neuralog-window {
    transform: scale(1);
}

.neuralog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.75rem;
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid var(--border-gold);
}
.header-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.brain-glow { font-size: 1.8rem; filter: drop-shadow(0 0 8px var(--gold-primary)); }
.header-branding h3 { font-family: var(--font-display); font-size: 1.2rem; color: #ffffff; }
.header-sub { font-size: 0.75rem; color: var(--gold-light); font-family: var(--font-mono); }

.header-nav-tabs {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.tab-btn {
    padding: 0.4rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}
.tab-btn.active {
    background: var(--gold-primary);
    color: #0a0a0a;
}

.neuralog-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
}
.neuralog-close:hover { color: #ffffff; transform: rotate(90deg); }

.neuralog-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tab-content {
    display: none;
    flex: 1;
    flex-direction: column;
    overflow: hidden;
}
.tab-content.active {
    display: flex;
}

/* Chat Tab */
.chat-stream {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.chat-msg {
    display: flex;
    gap: 0.85rem;
    max-width: 85%;
    animation: fadeIn 0.3s ease;
}
.chat-msg.user-msg {
    align-self: flex-end;
    flex-direction: row-reverse;
}
.msg-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}
.msg-body {
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.94rem;
    line-height: 1.6;
}
.user-msg .msg-body {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: #0a0a0a;
    font-weight: 500;
}
.quick-prompts {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.q-btn {
    padding: 0.35rem 0.8rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.78rem;
    cursor: pointer;
    transition: var(--transition);
}
.q-btn:hover {
    background: var(--gold-primary);
    color: #0a0a0a;
}

.chat-input-bar {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.85);
    border-top: 1px solid var(--border-gold);
    display: flex;
    gap: 0.75rem;
}
.chat-input-bar input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.95rem;
}
.chat-input-bar input:focus {
    outline: none;
    border-color: var(--gold-bright);
}
.send-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    background: var(--gold-primary);
    color: #0a0a0a;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}
.send-btn:hover { background: var(--gold-bright); }

/* Ecosystem Radar Tab */
#tab-radar {
    padding: 1.5rem;
    overflow-y: auto;
}
.radar-header { margin-bottom: 1.5rem; }
.radar-header h4 { font-family: var(--font-display); font-size: 1.4rem; color: #ffffff; }
.radar-header p { color: var(--text-muted); font-size: 0.9rem; }
.nodes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.node-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
}
.node-card-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}
.node-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}
.node-card-top h5 { font-size: 1.05rem; color: #ffffff; }
.node-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.node-link { font-size: 0.8rem; color: var(--gold-light); text-decoration: none; font-weight: 600; }
.node-link:hover { color: var(--gold-bright); }

/* CLI Tab */
#tab-cli {
    background: #000000;
    padding: 1.5rem;
    font-family: var(--font-mono);
}
.cli-terminal {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
}
.cli-line { color: #f8f5ee; }
.cli-line.banner { color: var(--gold-bright); font-weight: bold; }
.cli-line.user { color: #ffffff; }
.cli-line.out { color: #e8d5a3; line-height: 1.6; }
.cli-input-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}
.cli-prompt { color: var(--gold-primary); font-size: 0.85rem; }
.cli-input-bar input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}
.cli-input-bar input:focus { outline: none; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .universe-grid { grid-template-columns: repeat(2, 1fr); }
    .briefing-box { grid-template-columns: 1fr; }
    .books-featured-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2.6rem; }
    .universe-grid { grid-template-columns: 1fr; }
    .hero-kpis { grid-template-columns: repeat(2, 1fr); }
    .neuralog-pill { bottom: 1rem; right: 1rem; }
}

/* ============================================================
   NEURALOG TESSERACT HUD & SECTION EXTENSIONS
   ============================================================ */

.brand-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.badge-ver {
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
}

/* Radar Extensions */
.radar-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.radar-stat-box {
    background: rgba(12, 12, 12, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    text-align: center;
}

.r-stat-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-bright);
    font-family: var(--font-mono);
}

.r-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.node-cat {
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    padding: 0.1rem 0.35rem;
    margin-left: auto;
}

.node-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin: 0.8rem 0 0.6rem 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.node-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.6rem;
}

.node-query-btn {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-bright);
    border-radius: 6px;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.2s ease;
}

.node-query-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--gold-bright);
}

/* Vault Tab */
.vault-search-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.vault-search-bar input {
    flex: 1;
    background: rgba(12, 12, 12, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    padding: 0.65rem 1rem;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.vault-search-bar input:focus {
    outline: none;
    border-color: var(--gold-bright);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.vault-count {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--gold-bright);
    white-space: nowrap;
}

.vault-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 0.4rem;
}

.vault-card {
    background: rgba(12, 12, 12, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

.vault-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(18, 18, 18, 0.85);
    transform: translateY(-2px);
}

.vault-tag {
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vault-card h4 {
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.vault-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
    flex: 1;
    margin: 0;
}

.vault-expand-btn {
    align-self: flex-start;
    background: transparent;
    border: none;
    color: var(--gold-bright);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    cursor: pointer;
    padding: 0;
    margin-top: 0.4rem;
    transition: color 0.2s;
}

.vault-expand-btn:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Multi-Agent Bus Feed */
.bus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.bus-title-group h4 {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
}

.bus-badge {
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: #f7e4a1;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    margin-top: 0.2rem;
    display: inline-block;
}

.bus-refresh-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8f5ee;
    border-radius: 6px;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    cursor: pointer;
    transition: all 0.2s ease;
}

.bus-refresh-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-bright);
}

.bus-agents-bar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
}

.agent-chip {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    background: rgba(12, 12, 12, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    padding: 0.3rem 0.65rem;
    color: #f0ebe1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.agent-chip.active span {
    color: #ffd700;
    animation: pulse 1.5s infinite;
}

.bus-feed-stream {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 0.3rem;
}

.bus-event-item {
    background: rgba(12, 14, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--gold-primary);
    border-radius: 6px;
    padding: 0.85rem 1rem;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    font-size: 0.8rem;
    line-height: 1.45;
}

.bus-ev-time {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.75rem;
    white-space: nowrap;
}

.bus-ev-actor {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    white-space: nowrap;
}

.actor-system { background: rgba(212, 175, 55, 0.15); color: #f5d77f; }
.actor-code { background: rgba(255, 255, 255, 0.12); color: #ffffff; }
.actor-cowork { background: rgba(201, 168, 76, 0.2); color: #e8d5a3; }
.actor-mirco { background: rgba(212, 175, 55, 0.2); color: var(--gold-bright); }

.bus-ev-content {
    flex: 1;
    color: #ffffff;
}

.bus-ev-content strong {
    color: #ffffff;
}

/* Category Badge in Chat */
.chat-cat-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    padding: 0.1rem 0.4rem;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   ON-PAGE TESSERACT 4D SHOWCASE SECTION
   ============================================================ */

.tesseract-showcase-section {
    padding: 7rem 2rem;
    background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 70%), #000000;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    position: relative;
    z-index: 2;
}

.tesseract-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.tesseract-pillars-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.pillar-item {
    display: flex;
    gap: 1.25rem;
    background: rgba(12, 12, 12, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
    backdrop-filter: blur(10px);
}

.pillar-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.pillar-text h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.pillar-text p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.45;
    margin: 0;
}

.tesseract-action-card {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9), rgba(12, 14, 20, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.hypercube-pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
}

.tesseract-action-card h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin: 0;
}

.tesseract-action-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Pricing / Tier Matrix */
.tesseract-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tesseract-tier-card {
    background: rgba(12, 12, 12, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tesseract-tier-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.15);
}

.tesseract-tier-card.featured {
    border-color: var(--gold-primary);
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.85) 0%, rgba(12, 14, 20, 0.95) 100%);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.2);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #c9a84c, #f6e58d);
    color: #000000;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-mono);
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tier-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.tier-subtitle {
    font-size: 0.85rem;
    color: var(--gold-bright);
    margin-top: 0.3rem;
}

.tier-price {
    margin: 1.5rem 0;
}

.tier-price .amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-mono);
}

.tier-price .period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

.tier-features li {
    font-size: 0.85rem;
    color: #f8f5ee;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tier-features li span {
    color: var(--gold-bright);
    font-weight: bold;
}

.tier-cta {
    width: 100%;
    padding: 0.85rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tier-cta.btn-outline {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-bright);
}

.tier-cta.btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-bright);
}

.tier-cta.btn-primary {
    background: linear-gradient(135deg, #c9a84c, #f6e58d);
    border: none;
    color: #000000;
}

.tier-cta.btn-primary:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .tesseract-intro-grid { grid-template-columns: 1fr; }
    .tesseract-tiers-grid { grid-template-columns: 1fr; }
    .vault-items-grid { grid-template-columns: 1fr; }
    .radar-header { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FOUNDER OS MEGA SITE · 24 BLOCKS MASTER STYLESHEET
   ============================================================ */

/* Top Bar Sub-Badge & Search Button */
.brand-sub-badge {
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    letter-spacing: 0.08em;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.nav-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f8f5ee;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.nav-search-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-bright);
}

.search-icon { font-size: 0.95rem; line-height: 1; }

/* 01. Hero Extensions */
.hero-positioning {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gold-bright);
    margin: 0.5rem 0 1rem 0;
    text-transform: uppercase;
}

.hero-roles-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.role-pill {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.2rem 0.65rem;
    border-radius: 6px;
    font-weight: 500;
}

.role-sep { color: var(--gold-bright); }

.hero-tagline-quote {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #f8f5ee;
    font-style: italic;
    border-left: 2px solid var(--gold-primary);
    padding-left: 1rem;
    margin: 1.25rem 0 1.75rem 0;
}

/* Proof Wall Grid */
.proof-wall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.proof-box {
    background: rgba(12, 12, 12, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    text-align: center;
    backdrop-filter: blur(8px);
}

.proof-number {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--gold-bright);
    line-height: 1.1;
}

.proof-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0.35rem;
}

/* 02. Manifesto */
.section-manifesto {
    padding: 5rem 2rem;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 65%);
}

.manifesto-card {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    background: rgba(12, 12, 12, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.manifesto-card h2 {
    font-size: 2.2rem;
    margin: 1rem 0;
    color: #ffffff;
}

.manifesto-lead {
    font-size: 1.1rem;
    color: #f8f5ee;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.manifesto-chain {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--gold-bright);
    flex-wrap: wrap;
    justify-content: center;
}

.chain-arrow { color: #ffffff; }

/* 03. 5 Universes */
.section-universes-5 {
    padding: 6rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.universes-5-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.universe-col-card {
    background: rgba(12, 12, 12, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.universe-col-card:hover {
    border-color: var(--gold-bright);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.15);
}

.u-icon { font-size: 2rem; line-height: 1; margin-bottom: 0.85rem; }

.universe-col-card h3 {
    font-size: 1.15rem;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-family: var(--font-mono);
}

.u-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
    flex: 1;
    margin-bottom: 1.2rem;
}

.u-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.85rem;
}

.u-list li {
    font-size: 0.72rem;
    font-family: var(--font-mono);
    color: #f0ebe1;
    padding: 0.3rem 0;
}

/* 04. Ecosystem Graph */
.section-ecosystem-graph {
    padding: 6rem 2rem;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
}

.ecosystem-interactive-wrapper {
    background: rgba(12, 14, 20, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.graph-legend-bar {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legend-item { display: flex; align-items: center; gap: 0.4rem; }
.leg-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.leg-dot.gold { background: #d4af37; box-shadow: 0 0 8px #d4af37; }
.leg-dot.white { background: #ffffff; box-shadow: 0 0 8px rgba(255, 255, 255, 0.8); }
.leg-dot.gold-bright { background: #ffd700; box-shadow: 0 0 8px #ffd700; }
.leg-dot.gold-dark { background: #aa8022; box-shadow: 0 0 8px #aa8022; }

.ecosystem-nodes-radar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.eco-radar-node {
    background: rgba(14, 14, 14, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.eco-radar-node:hover {
    border-color: var(--gold-bright);
    background: rgba(18, 18, 18, 0.9);
    transform: translateY(-3px);
}

.ern-top {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}

.pulse-online {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d4af37;
    animation: pulse 1.5s infinite;
}

.eco-radar-node h4 { font-size: 0.95rem; color: #ffffff; margin: 0 0 0.35rem 0; }
.eco-radar-node p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; margin: 0 0 0.75rem 0; }
.ern-link { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold-primary); }

/* 05. Ventures Portfolio */
.section-ventures { padding: 6rem 2rem; }

.venture-filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.venture-filter-btn {
    background: rgba(12, 12, 12, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f0ebe1;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.venture-filter-btn.active, .venture-filter-btn:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
}

.venture-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.venture-portfolio-card {
    background: rgba(12, 12, 12, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.venture-portfolio-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.12);
}

.vpc-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.vpc-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: bold;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.vpc-badge.flagship { background: rgba(212, 175, 55, 0.2); color: var(--gold-bright); border: 1px solid rgba(212, 175, 55, 0.4); }
.vpc-badge.active { background: rgba(212, 175, 55, 0.18); color: #ffd700; border: 1px solid rgba(212, 175, 55, 0.4); }
.vpc-badge.building { background: rgba(255, 255, 255, 0.12); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.3); }
.vpc-badge.incubating { background: rgba(201, 168, 76, 0.15); color: #e8d5a3; border: 1px solid rgba(201, 168, 76, 0.3); }
.vpc-badge.rd { background: rgba(255, 215, 0, 0.1); color: #f5d77f; border: 1px solid rgba(255, 215, 0, 0.25); }

.vpc-cat {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.venture-portfolio-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 0 0 0.3rem 0;
}

.vpc-role {
    font-size: 0.82rem;
    color: var(--gold-primary);
    font-family: var(--font-mono);
    margin-bottom: 0.85rem;
}

.vpc-mission {
    font-size: 0.85rem;
    color: #f0ebe1;
    line-height: 1.5;
    flex: 1;
    margin: 0 0 1rem 0;
}

.vpc-metrics {
    font-size: 0.78rem;
    font-family: var(--font-mono);
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.08);
    padding: 0.4rem 0.65rem;
    border-radius: 6px;
    margin-bottom: 1.25rem;
}

.btn-card-gold {
    display: inline-block;
    background: linear-gradient(135deg, #c9a84c, #f6e58d);
    color: #000000;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.6rem 1.1rem;
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s;
}

.btn-card-gold:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-card-outline {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-bright);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.6rem 1.1rem;
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s;
}

.btn-card-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-bright);
}

/* 06. Monumental Impact */
.section-impact-monumental {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(14, 14, 14, 0.95));
}

.monumental-impact-box {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.impact-title {
    font-size: 2.4rem;
    color: #ffffff;
    margin: 1rem 0 3.5rem 0;
}

.monumental-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.mn-item {
    background: rgba(12, 14, 20, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2.25rem 1.5rem;
}

.mn-val {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: var(--font-mono);
    color: var(--gold-bright);
    line-height: 1;
    margin-bottom: 0.85rem;
}

.mn-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.65rem;
}

.mn-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

/* 07. Global Footprint */
.section-footprint { padding: 6rem 2rem; }

.footprint-canvas-card {
    background: rgba(12, 14, 20, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

#world-map-canvas {
    width: 100%;
    height: 320px;
    display: block;
}

.footprint-details-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fp-item { text-align: center; }
.fp-item strong { display: block; font-size: 0.85rem; color: #ffffff; font-family: var(--font-mono); margin-bottom: 0.25rem; }
.fp-item span { font-size: 0.75rem; color: var(--text-muted); }

/* 08. Building Now */
.section-building-now { padding: 6rem 2rem; }

.building-now-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.bn-card {
    background: rgba(12, 12, 12, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.bn-top {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.72rem;
}

.bn-badge.live { color: #ffd700; }
.bn-badge.progress { color: #ffffff; }
.bn-badge.staging { color: #e5c365; }

.bn-stage { color: var(--text-muted); }

.bn-card h3 { font-size: 1.3rem; color: #ffffff; margin: 0; }
.bn-focus { font-size: 0.85rem; color: #f0ebe1; line-height: 1.5; flex: 1; margin: 0; }

.bn-collab {
    font-size: 0.78rem;
    background: rgba(0, 0, 0, 0.7);
    border-left: 2px solid var(--gold-primary);
    padding: 0.6rem 0.85rem;
    border-radius: 4px;
    color: #ffffff;
    line-height: 1.45;
}

.bn-collab strong { color: var(--gold-bright); }

/* 09. Expertise */
.section-expertise { padding: 6rem 2rem; }

.expertise-matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.exp-card {
    background: rgba(12, 12, 12, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.exp-icon { font-size: 2rem; margin-bottom: 0.75rem; line-height: 1; }
.exp-card h4 { font-size: 1.15rem; color: #ffffff; margin: 0 0 0.5rem 0; }
.exp-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.45; flex: 1; margin: 0 0 1rem 0; }

.exp-proof {
    font-size: 0.78rem;
    font-family: var(--font-mono);
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.08);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.exp-proof span { color: #ffffff; font-weight: bold; }

/* 10. Journey Timeline */
.section-journey { padding: 6rem 2rem; }

.journey-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-left: 2px solid rgba(212, 175, 55, 0.25);
    padding-left: 2rem;
}

.timeline-step {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-step:last-child { margin-bottom: 0; }

.t-year {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-bright);
    margin-bottom: 0.35rem;
}

.t-dot {
    position: absolute;
    left: -2.55rem;
    top: 0.25rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #000000;
    border: 2px solid var(--gold-primary);
}

.t-dot.current-pulse {
    background: var(--gold-bright);
    box-shadow: 0 0 15px var(--gold-bright);
}

.t-content h4 { font-size: 1.15rem; color: #ffffff; margin: 0 0 0.35rem 0; }
.t-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* 11. Case Studies */
.section-case-studies { padding: 6rem 2rem; }

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.case-card {
    background: rgba(12, 12, 12, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.case-sector {
    font-size: 0.72rem;
    font-family: var(--font-mono);
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-card h3 { font-size: 1.25rem; color: #ffffff; margin: 0; line-height: 1.35; }
.case-spec { font-size: 0.82rem; color: #f8f5ee; }
.case-result {
    font-size: 0.85rem;
    color: #f0ebe1;
    background: rgba(0, 0, 0, 0.7);
    border-left: 2px solid var(--gold-bright);
    padding: 0.75rem;
    border-radius: 4px;
    line-height: 1.45;
    flex: 1;
}

.case-venture { font-size: 0.75rem; font-family: var(--font-mono); color: var(--text-muted); }
.case-venture strong { color: var(--gold-primary); }

/* 12. Knowledge Hub */
.section-knowledge-hub { padding: 6rem 2rem; }

.knowledge-hub-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.k-category-card {
    background: rgba(12, 12, 12, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.k-category-card:hover {
    border-color: var(--gold-bright);
    transform: translateY(-4px);
}

.kc-icon { font-size: 2rem; line-height: 1; margin-bottom: 0.75rem; }
.k-category-card h4 { font-size: 1.1rem; color: #ffffff; margin: 0 0 0.5rem 0; }
.k-category-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.45; flex: 1; margin: 0 0 1rem 0; }
.kc-link { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gold-bright); }

/* 13. Books Showcase */
.books-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.book-showcase-card {
    background: rgba(12, 12, 12, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.book-cover-wrap {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    perspective: 800px;
}

.book-img {
    max-height: 260px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: -10px 15px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 175, 55, 0.15);
    transition: transform 0.4s ease;
}

.book-showcase-card:hover .book-img {
    transform: rotateY(-10deg) scale(1.04);
}

.book-details h3 { font-size: 1.25rem; color: #ffffff; margin: 0.6rem 0; line-height: 1.35; }
.book-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.45; flex: 1; margin: 0 0 1rem 0; }

.book-meta {
    font-size: 0.72rem;
    font-family: var(--font-mono);
    color: var(--gold-primary);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

/* 14. Media TV */
.section-media-tv { padding: 6rem 2rem; }

.media-tv-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2rem;
}

.media-main-feature {
    background: rgba(12, 14, 20, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 1.5rem;
}

.video-placeholder {
    height: 320px;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0.9) 80%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.play-pulse {
    font-size: 3.5rem;
    color: var(--gold-bright);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transition: transform 0.2s;
}

.play-pulse:hover { transform: scale(1.1); }

.v-caption {
    position: absolute;
    bottom: 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    padding: 0 1.5rem;
}

.media-side-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.media-clip-item {
    background: rgba(12, 12, 12, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.media-clip-item:hover {
    border-color: var(--gold-bright);
    background: rgba(18, 18, 18, 0.8);
}

.clip-icon { font-size: 1.6rem; }
.media-clip-item h5 { font-size: 0.95rem; color: #ffffff; margin: 0 0 0.25rem 0; }
.media-clip-item span { font-size: 0.75rem; color: var(--text-muted); font-family: var(--font-mono); }

/* 15. Latest Thinking */
.section-thinking { padding: 6rem 2rem; }

.thinking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.think-card {
    background: rgba(12, 12, 12, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px;
    padding: 2rem;
}

.think-badge {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: bold;
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.06em;
}

.think-card h4 { font-size: 1.15rem; color: #ffffff; margin: 0.85rem 0 0.5rem 0; line-height: 1.4; }
.think-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* 16. Mirco Lab */
.section-lab { padding: 6rem 2rem; }

.lab-banner-card {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.1) 0%, rgba(12, 14, 20, 0.95) 75%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lab-banner-card h2 { font-size: 2.2rem; color: #ffffff; margin: 1rem 0; }
.lab-banner-card p { font-size: 1rem; color: #f8f5ee; max-width: 700px; margin: 0 auto 2rem auto; line-height: 1.6; }

.lab-tags-cluster {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--gold-bright);
}

.lab-tags-cluster span {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

/* 17. Persona Router */
.section-persona-router { padding: 6rem 2rem; }

.personas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.persona-card {
    background: rgba(12, 12, 12, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px;
    padding: 1.75rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.persona-card:hover, .persona-card.selected {
    border-color: var(--gold-bright);
    background: rgba(18, 18, 18, 0.85);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.15);
}

.p-icon { font-size: 2rem; margin-bottom: 0.65rem; }
.persona-card h4 { font-size: 1.05rem; color: #ffffff; margin: 0 0 0.35rem 0; font-family: var(--font-mono); }
.persona-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.45; flex: 1; margin: 0 0 1rem 0; }
.p-action { font-family: var(--font-mono); font-size: 0.75rem; color: var(--gold-bright); }

/* 18. Ask Mirco Banner */
.section-ask-mirco-highlight { padding: 5rem 2rem; }

.ask-mirco-banner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(10, 10, 10, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2.5rem;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
}

.amb-left h2 { font-size: 2rem; color: #ffffff; margin: 0.6rem 0; }
.amb-left p { font-size: 0.95rem; color: #f8f5ee; line-height: 1.6; margin-bottom: 1.5rem; }

.amb-samples {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.amb-chip {
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.amb-chip:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-bright);
}

.amb-right { text-align: center; }

/* 19. Work With Mirco */
.section-work-with-me { padding: 6rem 2rem; }

.work-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.wc-card {
    background: rgba(12, 12, 12, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.wc-tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: bold;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.wc-card h4 { font-size: 1.15rem; color: #ffffff; margin: 0 0 0.5rem 0; }
.wc-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.45; flex: 1; margin: 0 0 1.25rem 0; }
.wc-link { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gold-bright); font-weight: 600; }

/* 20. Speaking */
.section-speaking { padding: 6rem 2rem; }

.speaking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.speaking-topics-col {
    background: rgba(12, 12, 12, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2.25rem;
}

.speaking-topics-col h3 { font-size: 1.3rem; color: #ffffff; margin: 0 0 1.25rem 0; }

.topics-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.topics-list li {
    font-size: 0.9rem;
    color: #f0ebe1;
    line-height: 1.5;
}

.topics-list strong { color: #ffffff; }

.speaking-bio-col .bio-box {
    background: rgba(12, 12, 12, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bio-box h4 { font-size: 1.15rem; color: #ffffff; margin: 0 0 0.85rem 0; }
.bio-text { font-size: 0.92rem; color: #f8f5ee; line-height: 1.6; font-style: italic; flex: 1; margin: 0 0 1.5rem 0; }

.media-kit-actions {
    display: flex;
    gap: 1rem;
}

/* 21. Trust */
.section-trust { padding: 5rem 2rem; }

.trust-container-card {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(12, 14, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.trust-container-card h3 { font-size: 1.6rem; color: #ffffff; margin: 0.85rem 0 0.5rem 0; }
.trust-container-card p { font-size: 0.9rem; color: var(--text-muted); max-width: 750px; margin: 0 auto 2rem auto; }

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.tb-item {
    background: rgba(14, 14, 14, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1.25rem 1rem;
}

.tb-item strong { display: block; font-size: 0.9rem; color: var(--gold-bright); font-family: var(--font-mono); margin-bottom: 0.35rem; }
.tb-item span { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; display: block; }

/* 22. Newsletter */
.section-newsletter { padding: 5rem 2rem; }

.newsletter-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9), rgba(12, 14, 20, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 18px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.newsletter-card h2 { font-size: 2rem; color: #ffffff; margin: 0.85rem 0 0.5rem 0; }
.newsletter-card p { font-size: 0.95rem; color: #f8f5ee; max-width: 600px; margin: 0 auto 1.75rem auto; line-height: 1.5; }

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.9rem;
}

.newsletter-form input:focus { outline: none; border-color: var(--gold-bright); }
.newsletter-guarantee { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.85rem; }

/* 23. Live Ticker */
.ecosystem-live-ticker {
    background: #000000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.75rem 0;
}

.ticker-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
}

.ticker-label { color: #ffd700; font-weight: bold; white-space: nowrap; }
.ticker-text { color: #ffffff; flex: 1; transition: opacity 0.3s; }
.ticker-time { color: var(--text-muted); font-size: 0.7rem; white-space: nowrap; }

/* 24. Global Master Footer */
.master-footer {
    background: #020202;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 5rem 2rem 2.5rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.footer-brand-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0.85rem 0 1.25rem 0;
    max-width: 320px;
}

.footer-canonical-stats {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold-bright);
}

.footer-col h5 {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #ffffff;
    letter-spacing: 0.08em;
    margin: 0 0 1.25rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-bright); }

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-sovereign-badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--gold-bright);
}

/* Universal Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
    z-index: 10000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 5rem 1.5rem 2rem 1.5rem;
}

.search-modal.open { display: flex; }

.search-modal-box {
    width: 100%;
    max-width: 740px;
    background: #101010;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.search-box-header {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sb-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1;
}

.sb-icon { font-size: 1.3rem; color: var(--gold-bright); }

.sb-search-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.15rem;
    font-family: var(--font-sans);
}

.sb-search-input-wrap input:focus { outline: none; }

.sb-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    transition: color 0.2s;
}

.sb-close:hover { color: #ffffff; }

.search-box-body {
    max-height: 480px;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.search-results-stream {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.search-result-item {
    background: rgba(14, 14, 14, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition: all 0.2s;
    text-decoration: none;
}

.search-result-item:hover {
    background: rgba(18, 18, 18, 0.9);
    border-color: var(--gold-bright);
    transform: translateX(4px);
}

.res-type-badge {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.12);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.search-result-item h4 { font-size: 1.05rem; color: #ffffff; margin: 0; }
.res-sub { font-size: 0.78rem; font-family: var(--font-mono); color: var(--text-muted); }
.res-desc { font-size: 0.84rem; color: #f0ebe1; line-height: 1.4; margin: 0; }

.search-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 2.5rem 1rem;
    font-size: 0.9rem;
}

.search-box-footer {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Responsive Master Layout */
@media (max-width: 1200px) {
    .universes-5-grid { grid-template-columns: repeat(3, 1fr); }
    .ecosystem-nodes-radar-grid { grid-template-columns: repeat(2, 1fr); }
    .monumental-numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .universes-5-grid { grid-template-columns: 1fr; }
    .venture-portfolio-grid { grid-template-columns: 1fr; }
    .proof-wall-grid { grid-template-columns: repeat(2, 1fr); }
    .building-now-grid { grid-template-columns: 1fr; }
    .expertise-matrix-grid { grid-template-columns: 1fr; }
    .case-studies-grid { grid-template-columns: 1fr; }
    .knowledge-hub-tabs { grid-template-columns: repeat(2, 1fr); }
    .books-showcase-grid { grid-template-columns: 1fr; }
    .media-tv-grid { grid-template-columns: 1fr; }
    .thinking-grid { grid-template-columns: 1fr; }
    .personas-grid { grid-template-columns: 1fr; }
    .ask-mirco-banner { grid-template-columns: 1fr; }
    .work-channels-grid { grid-template-columns: 1fr; }
    .speaking-grid { grid-template-columns: 1fr; }
    .trust-badges-grid { grid-template-columns: repeat(2, 1fr); }
    .footprint-details-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .proof-wall-grid { grid-template-columns: 1fr; }
    .monumental-numbers-grid { grid-template-columns: 1fr; }
    .knowledge-hub-tabs { grid-template-columns: 1fr; }
    .trust-badges-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .footer-bottom-bar { flex-direction: column; gap: 0.8rem; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GOLD SVG ICONS & LUXURY BURGER DRAWER STYLES
   ============================================================ */

.gold-icon {
    display: inline-block;
    vertical-align: middle;
    color: var(--gold-bright);
    transition: transform 0.2s ease, filter 0.2s ease;
}

button:hover .gold-icon, a:hover .gold-icon {
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

/* Header Right Group */
.header-right-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

/* Luxury Burger Button */
.burger-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 42px;
    height: 42px;
    background: rgba(14, 14, 14, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 8px;
    padding: 12px 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.burger-menu-btn:hover {
    border-color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.burger-bar {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #c9a84c, #f6e58d);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.burger-menu-btn.open .burger-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.burger-menu-btn.open .burger-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(8px);
}

.burger-menu-btn.open .burger-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Burger Drawer Component */
.burger-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.4s ease;
}

.burger-drawer.open {
    pointer-events: auto;
    visibility: visible;
}

.drawer-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 8, 0.85);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.burger-drawer.open .drawer-backdrop {
    opacity: 1;
}

.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background: #080808;
    border-left: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    overflow-y: auto;
}

.burger-drawer.open .drawer-panel {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

.drawer-branding {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--gold-bright);
    letter-spacing: 0.08em;
}

.drawer-close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.drawer-close-btn:hover {
    transform: scale(1.15) rotate(90deg);
}

.drawer-nav {
    flex: 1;
}

.drawer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.drawer-link {
    display: flex;
    flex-direction: column;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.drawer-link:hover {
    background: rgba(212, 175, 55, 0.08);
    border-left-color: var(--gold-bright);
    transform: translateX(6px);
}

.drawer-num {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--gold-primary);
    letter-spacing: 0.08em;
}

.drawer-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-sans);
}

.drawer-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.15rem;
}

.drawer-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.drawer-proof-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    background: rgba(12, 12, 12, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 0.85rem;
}

.drawer-proof-stats strong {
    color: var(--gold-bright);
    display: block;
    font-size: 0.95rem;
}


/* ============================================================== */
/*  EXECUTIVE HEADER VISITORS METRICS & GOLD LIVE PULSE           */
/* ============================================================== */
.header-counters-badge {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 999px;
    padding: 0.35rem 1.15rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 0 12px rgba(212, 175, 55, 0.06);
    transition: all 0.3s ease;
}

.header-counters-badge:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.18), inset 0 0 16px rgba(212, 175, 55, 0.1);
}

.counter-box {
    display: flex;
    align-items: center;
}

.counter-box.total-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.counter-box.live-box {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.live-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.counter-label {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #9e8e63;
    text-transform: uppercase;
    line-height: 1;
}

.counter-val {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.04em;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease, transform 0.2s ease, text-shadow 0.3s ease;
}

.counter-val.live-val {
    color: #f7e4a1;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.45);
}

.counter-val.val-bump {
    color: #ffd875;
    transform: scale(1.08);
    text-shadow: 0 0 16px rgba(212, 175, 55, 0.9);
}

.counter-val.val-tick {
    color: #ffffff;
    text-shadow: 0 0 14px rgba(212, 175, 55, 0.85);
}

.counter-divider {
    width: 1px;
    height: 22px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

/* Gold Pulsating Dot */
.gold-pulse-dot {
    position: relative;
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 8px #d4af37, 0 0 14px rgba(212, 175, 55, 0.6);
    flex-shrink: 0;
}

.gold-pulse-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.7);
    transform: translate(-50%, -50%);
    animation: goldDotPulse 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes goldDotPulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.95;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        width: 320%;
        height: 320%;
        opacity: 0;
    }
}

/* Drawer Counters Card */
.drawer-counters-card {
    background: rgba(21, 25, 36, 0.65);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.drawer-counter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-counter-val {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
}

.drawer-counter-val.live-val {
    color: #f7e4a1;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.45);
}

@media (max-width: 1140px) {
    .header-counters-badge {
        gap: 0.85rem;
        padding: 0.3rem 0.85rem;
    }
    .counter-label {
        display: none;
    }
    .counter-val {
        font-size: 0.8rem;
    }
}

@media (max-width: 860px) {
    .header-counters-badge {
        display: none;
    }
}


/* ============================================================== */
/*  AMAZON BOOKS AUTO-SYNC ENGINE & LUXURY CATALOGUE               */
/* ============================================================== */
.amazon-sync-header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    background: rgba(12, 12, 12, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    padding: 1.1rem 1.6rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), inset 0 0 16px rgba(212, 175, 55, 0.05);
}

.sync-status-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.sync-live-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-bright);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sync-meta-txt {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sync-actions-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.btn-sync-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.15rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-sync-action.outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
}

.btn-sync-action.outline:hover {
    border-color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-bright);
}

.btn-sync-action.gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    border: 1px solid var(--gold-bright);
    color: #000000;
    font-weight: 700;
}

.btn-sync-action.gold:hover {
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

/* Books Search & Filter Bar */
.books-controls-bar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.books-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 620px;
}

.books-search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.books-search-input {
    width: 100%;
    background: rgba(8, 8, 8, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 50px;
    padding: 0.85rem 1.25rem 0.85rem 3rem;
    color: #ffffff;
    font-size: 0.92rem;
    font-family: var(--font-sans);
    transition: var(--transition);
}

.books-search-input:focus {
    outline: none;
    border-color: var(--gold-bright);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
    background: rgba(14, 14, 14, 0.95);
}

.books-filter-pills {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.book-pill-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-family: var(--font-mono);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.book-pill-btn:hover, .book-pill-btn.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
}

/* Masterworks Spotlight 4-Col Grid */
.books-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-bottom: 3.5rem;
}

.spotlight-card {
    background: rgba(12, 12, 12, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    opacity: 0.7;
}

.spotlight-card:hover {
    border-color: var(--gold-bright);
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(212, 175, 55, 0.15);
}

/* Dynamic Books Grid (3-Col) */
.dynamic-books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 1.5rem;
}

.book-item-card {
    background: rgba(8, 8, 8, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.book-item-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(16, 20, 28, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 16px rgba(212, 175, 55, 0.1);
}

.book-top-badge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.book-card-badge {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold-bright);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.book-card-badge.bs {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.08));
    border-color: var(--gold-bright);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.book-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.45rem;
    line-height: 1.35;
}

.book-card-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.book-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    gap: 0.75rem;
}

.book-meta-specs {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #a89874;
}

.btn-book-amz {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.95rem;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-bright);
    text-decoration: none;
    transition: var(--transition);
}

.btn-book-amz:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: #000000;
    border-color: var(--gold-bright);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.books-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* ============================================================
   B2B VALUE ARCHITECTURE & STRATEGIC OFFERS · CRO ENGINE
   Strictly Pure Gold, Deep Black & Titanium White
   ============================================================ */

.section-value-offers {
    padding: 7rem 0 6rem;
    background: transparent;
    position: relative;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.value-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .value-offers-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

.value-card {
    background: rgba(12, 12, 12, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95), 0 0 30px rgba(212, 175, 55, 0.15);
}

.value-card.featured-card {
    border: 2px solid #ffd700;
    background: linear-gradient(180deg, rgba(20, 18, 10, 0.96) 0%, rgba(10, 10, 10, 0.98) 100%);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.25);
    transform: scale(1.03);
}

.value-card.featured-card:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 45px rgba(212, 175, 55, 0.35);
}

.card-top-pill {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #c9a84c);
    color: #000000;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
    padding: 0.3rem 1.1rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

.tier-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold-bright);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.value-card-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.value-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.5rem;
    min-height: 48px;
}

.price-stack-box {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.75rem;
}

.val-market-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888888;
    margin-bottom: 0.35rem;
}

.val-market-row s {
    color: #999999;
}

.final-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.final-price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-sans);
    line-height: 1;
}

.featured-card .final-price-amount {
    color: #ffd700;
}

.final-price-period {
    font-size: 0.85rem;
    color: #a89874;
    font-family: var(--font-mono);
}

.credit-back-note {
    font-size: 0.72rem;
    color: #ffd700;
    margin-top: 0.4rem;
    font-family: var(--font-mono);
    line-height: 1.4;
}

.value-deliverables-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.value-deliverables-list li {
    font-size: 0.88rem;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.45;
}

.value-deliverables-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #ffd700;
}

.guarantee-seal-box {
    background: rgba(212, 175, 55, 0.07);
    border-left: 3px solid #ffd700;
    padding: 0.85rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.guarantee-seal-box strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.2rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
}

.btn-value-cta {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-value-cta:active {
    transform: scale(0.96);
}

.btn-value-gold {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    color: #000000;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.btn-value-gold:hover {
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: #000000;
}

.btn-value-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #ffffff;
}

.btn-value-glass:hover {
    border-color: #ffd700;
    background: rgba(212, 175, 55, 0.15);
    color: #ffd700;
}

/* FAQ CRO Accordion Section */
.section-faq-cro {
    padding: 6rem 0;
    background: #000000;
}

.faq-accordion-container {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(14, 14, 14, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.faq-item.active {
    border-color: #ffd700;
    background: rgba(18, 18, 18, 0.98);
}

.faq-question {
    padding: 1.4rem 1.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    user-select: none;
}

.faq-question .faq-toggle-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    padding: 0 1.75rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.75rem 1.5rem;
}

/* ============================================================ */
/* LANGUAGE SWITCHER (IT / EN) — PURE GOLD, BLACK & WHITE       */
/* ============================================================ */
.lang-switch-wrap {
    display: inline-flex;
    align-items: center;
}

.lang-toggle-btn {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.85);
    padding: 3px 6px;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.lang-toggle-btn:hover {
    border-color: #ffd700;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.lang-pill {
    padding: 3px 8px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: #888888;
    border-radius: 14px;
    transition: var(--transition);
    line-height: 1;
}

.lang-pill.active {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    color: #000000;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.lang-sep {
    color: rgba(212, 175, 55, 0.35);
    font-size: 0.72rem;
    margin: 0 2px;
}

/* ============================================================ */
/* HERO ENHANCEMENTS: PROBLEM & OPPORTUNITY SUBHEADINGS         */
/* ============================================================ */
.hero-subheadline-bold {
    font-family: var(--font-cinzel);
    font-size: 1.55rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 0.05em;
    margin-top: 1.25rem;
    margin-bottom: 0.35rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.hero-support {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.hero-sub-cta {
    margin-top: 1.25rem;
    font-size: 0.88rem;
    color: #c9a84c;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-sub-cta-link {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: var(--transition);
}

.hero-sub-cta-link:hover {
    color: #ffd700;
}

/* ============================================================ */
/* PROBLEM & OPPORTUNITY ROUTER (#problem-router)              */
/* ============================================================ */
.section-problem-router {
    padding: 6.5rem 0;
    background: #000000;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.problem-router-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem;
}

.problem-card {
    background: rgba(12, 12, 12, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    border-color: #ffd700;
    background: rgba(18, 18, 18, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.2);
}

.problem-card-top {
    margin-bottom: 1.25rem;
}

.problem-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffd700;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0 0 0.65rem 0;
    line-height: 1.35;
}

.problem-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.problem-solution-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.problem-solution-pill:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: #ffd700;
    color: #ffd700;
}

/* ============================================================ */
/* INTERACTIVE BUSINESS DIAGNOSTIC WIDGET                      */
/* ============================================================ */
.diagnostic-widget-box {
    margin-top: 4.5rem;
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.95), rgba(8, 8, 8, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 18px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
}

.diagnostic-widget-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.diag-controls h4 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.diag-controls p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.75rem;
}

.diag-field {
    margin-bottom: 1.25rem;
}

.diag-field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.diag-select {
    width: 100%;
    background: #080808;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
}

.diag-select:focus {
    border-color: #ffd700;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.diagnostic-output-card {
    background: #000000;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.diag-out-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 0.75rem;
}

.diag-out-status {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.diag-metric-row {
    font-size: 0.88rem;
    color: #ffffff;
    line-height: 1.5;
}

.diag-metric-row strong {
    color: #ffd700;
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

/* ============================================================ */
/* DEEP LEVERS & TRUST MANIFESTO (VALUE ENGINE)                 */
/* ============================================================ */
.deep-levers-block {
    margin-bottom: 4rem;
}

.deep-levers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.deep-lever-card {
    background: rgba(12, 12, 12, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: var(--transition);
}

.deep-lever-card:hover {
    border-color: #ffd700;
    background: rgba(18, 18, 18, 0.95);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.2);
}

.dl-icon-svg {
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.deep-lever-card h4 {
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-family: var(--font-mono);
}

.deep-lever-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

/* Trust Manifesto: Quello che NON faccio */
.trust-manifesto-box {
    margin: 3.5rem auto 0;
    max-width: 960px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    padding: 2.5rem;
}

.trust-manifesto-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.trust-manifesto-header h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0;
}

.trust-not-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.trust-not-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: #e5c365;
    line-height: 1.5;
}

.trust-not-item .not-icon {
    color: #ffd700;
    font-weight: 800;
    font-family: var(--font-mono);
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 992px) {
    .problem-router-grid {
        grid-template-columns: 1fr;
    }
    .diagnostic-widget-grid {
        grid-template-columns: 1fr;
    }
    .deep-levers-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-not-grid {
        grid-template-columns: 1fr;
    }
}

