/* ==========================================================================
   MFE PREMIUM ENHANCEMENTS - PHASES 1, 2, & 3 STYLE ENGINE
   ========================================================================== */

/* --- Variable Declarations & Design Tokens --- */
:root {
    --mfe-font-title: 'Orbitron', sans-serif;
    --mfe-font-copy: 'Inter', sans-serif;
    
    /* Cosmic Palette */
    --mfe-dark-bg: #0b0c10;
    --mfe-card-bg: rgba(20, 22, 34, 0.75);
    --mfe-glass-border: rgba(255, 255, 255, 0.08);
    
    /* Worlds colors */
    --mfe-sonic-primary: #7952e5;
    --mfe-sonic-glow: rgba(121, 82, 229, 0.45);
    
    --mfe-gaming-primary: #ff007f;
    --mfe-gaming-glow: rgba(255, 0, 127, 0.45);
    
    --mfe-synch-primary: #00bcd4;
    --mfe-synch-glow: rgba(0, 188, 212, 0.45);
    
    /* OS Colors */
    --mfe-os-bg: #c0c0c0;
    --mfe-os-shadow-dark: #808080;
    --mfe-os-shadow-light: #ffffff;
    --mfe-os-blue: #000080;
    
    --mfe-transition-fluid: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- Global Overrides --- */
.mfe-premium-active {
    background-color: var(--mfe-dark-bg) !important;
}

.mfe-premium-active p,
.mfe-premium-active span,
.mfe-premium-active div.styled-subtitle,
.mfe-premium-active div.vc_column_text {
    font-family: var(--mfe-font-copy) !important;
    font-weight: 300 !important;
    line-height: 1.6 !important;
}

.mfe-premium-active h1,
.mfe-premium-active h2,
.mfe-premium-active h3,
.mfe-premium-active h4,
.mfe-premium-active h5,
.mfe-premium-active .title-h1,
.mfe-premium-active .title-h2,
.mfe-premium-active .title-h3 {
    font-family: var(--mfe-font-title) !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

.mfe-glow-text {
    text-shadow: 0 0 8px var(--mfe-synch-primary), 0 0 20px rgba(0, 188, 212, 0.3) !important;
}

/* --- Bento Grid Overrides (Column targets) --- */
.mfe-glass {
    background: var(--mfe-card-bg) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--mfe-glass-border) !important;
    border-radius: 16px !important;
    padding: 35px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35) !important;
    transition: var(--mfe-transition-fluid) !important;
}

.mfe-glass:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45) !important;
}

/* The Columns Worlds */
.mfe-world-sonic { border-left: 5px solid var(--mfe-sonic-primary) !important; }
.mfe-world-sonic:hover { box-shadow: 0 15px 40px rgba(121, 82, 229, 0.2) !important; }

.mfe-world-gaming { border-left: 5px solid var(--mfe-gaming-primary) !important; }
.mfe-world-gaming:hover { box-shadow: 0 15px 40px rgba(255, 0, 127, 0.2) !important; }

.mfe-world-synch { border-left: 5px solid var(--mfe-synch-primary) !important; }
.mfe-world-synch:hover { box-shadow: 0 15px 40px rgba(0, 188, 212, 0.2) !important; }


/* ==========================================================================
   PHASE 2: INTERACTIVE AUDIO PLAYER (THE SONIC ENGINE)
   ========================================================================== */
.mfe-sonic-player-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    width: 360px;
    background: rgba(14, 16, 26, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--mfe-sonic-border);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 15px var(--mfe-sonic-glow);
    transition: var(--mfe-transition-fluid);
}

.mfe-cassette-deck {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mfe-cassette-body {
    height: 70px;
    background: #252839;
    border-radius: 6px;
    border: 2px solid #3b3f58;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mfe-cassette-label {
    font-family: var(--mfe-font-title);
    font-size: 9px;
    color: #ff007f;
    letter-spacing: 1.5px;
    border-bottom: 2px dashed #ff007f;
    padding-bottom: 2px;
}

.mfe-cassette-spindles {
    position: absolute;
    width: 60%;
    display: flex;
    justify-content: space-between;
}

.mfe-spindle {
    width: 20px;
    height: 20px;
    background: #0b0c10;
    border-radius: 50%;
    border: 3px dashed #7952e5;
}

.mfe-spindle.spinning {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.mfe-player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mfe-control-btn {
    background: #252839;
    border: 1px solid #3b3f58;
    color: #fff;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.mfe-control-btn:hover {
    background: var(--mfe-sonic-primary);
    border-color: var(--mfe-sonic-primary);
    color: #000;
}

.mfe-track-title {
    font-family: var(--mfe-font-title);
    font-size: 8px;
    color: #ffffff;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

/* Equalizer animations */
.mfe-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 25px;
    justify-content: center;
}

.mfe-eq-bar {
    width: 4px;
    height: 2px;
    background: var(--mfe-sonic-primary);
    transition: height 0.1s ease;
}

.mfe-equalizer.active .mfe-eq-bar {
    animation: eq-bounce 0.8s ease infinite alternate;
}

.mfe-equalizer.active .mfe-eq-bar:nth-child(2) { animation-delay: 0.15s; }
.mfe-equalizer.active .mfe-eq-bar:nth-child(3) { animation-delay: 0.3s; }
.mfe-equalizer.active .mfe-eq-bar:nth-child(4) { animation-delay: 0.05s; }
.mfe-equalizer.active .mfe-eq-bar:nth-child(5) { animation-delay: 0.2s; }

@keyframes eq-bounce {
    0% { height: 2px; }
    100% { height: 25px; }
}


/* ==========================================================================
   PHASE 2: SILICONOS 95 TYCOON CARD (THE OS WIDGET)
   ========================================================================== */
.mfe-silicon-os-window {
    background: var(--mfe-os-bg);
    border-top: 2px solid var(--mfe-os-shadow-light);
    border-left: 2px solid var(--mfe-os-shadow-light);
    border-right: 2px solid var(--mfe-os-shadow-dark);
    border-bottom: 2px solid var(--mfe-os-shadow-dark);
    padding: 3px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
    font-family: 'MS Sans Serif', Tahoma, Arial, sans-serif !important;
    color: #000000;
}

.mfe-os-header {
    background: var(--mfe-os-blue);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 6px;
    font-weight: bold;
}

.mfe-os-title {
    font-size: 11px;
    letter-spacing: 0.5px;
}

.mfe-os-controls button {
    background: var(--mfe-os-bg);
    border-top: 1px solid var(--mfe-os-shadow-light);
    border-left: 1px solid var(--mfe-os-shadow-light);
    border-right: 1px solid var(--mfe-os-shadow-dark);
    border-bottom: 1px solid var(--mfe-os-shadow-dark);
    color: #000;
    font-size: 9px;
    padding: 1px 4px;
    margin-left: 2px;
    cursor: pointer;
}

.mfe-os-menu {
    display: flex;
    gap: 12px;
    padding: 4px 8px;
    font-size: 11px;
    border-bottom: 1px solid var(--mfe-os-shadow-dark);
}

.mfe-os-body {
    background: #ffffff;
    border: 2px solid inset var(--mfe-os-shadow-dark);
    padding: 15px;
    min-height: 250px;
}

.mfe-os-tabs {
    display: flex;
    gap: 2px;
    border-bottom: 1px solid var(--mfe-os-shadow-dark);
    margin-bottom: 15px;
}

.mfe-tab-btn {
    background: var(--mfe-os-bg);
    border-top: 1px solid var(--mfe-os-shadow-light);
    border-left: 1px solid var(--mfe-os-shadow-light);
    border-right: 1px solid var(--mfe-os-shadow-dark);
    border-bottom: none;
    padding: 4px 12px;
    font-size: 11px;
    cursor: pointer;
}

.mfe-tab-btn.active {
    background: #ffffff;
    border-bottom: 1px solid #ffffff;
    font-weight: bold;
    transform: translateY(1px);
}

.mfe-tab-content {
    display: none;
}

.mfe-tab-content.active {
    display: block;
}

.mfe-heading-os {
    font-family: var(--mfe-font-title) !important;
    font-size: 14px !important;
    color: #ff007f !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
}

.mfe-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mfe-metric-box {
    background: #f0f0f0;
    border: 1px solid #808080;
    padding: 8px;
    display: flex;
    flex-direction: column;
}

.mfe-metric-label {
    font-size: 8px;
    color: #555555;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.mfe-metric-val {
    font-family: var(--mfe-font-title);
    font-size: 12px;
    font-weight: 700;
}

.font-pink { color: var(--mfe-gaming-primary); }
.font-cyan { color: var(--mfe-synch-primary); }

.mfe-os-divider {
    height: 1px;
    background: #808080;
    margin: 15px 0;
}

.mfe-os-info {
    font-size: 10px;
    margin: 0;
}

/* VC simulator styles */
.mfe-card-simulator {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.mfe-card-deck {
    flex-basis: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mfe-draw-card-btn {
    background: var(--mfe-os-bg);
    border-top: 2px solid var(--mfe-os-shadow-light);
    border-left: 2px solid var(--mfe-os-shadow-light);
    border-right: 2px solid var(--mfe-os-shadow-dark);
    border-bottom: 2px solid var(--mfe-os-shadow-dark);
    font-family: var(--mfe-font-title);
    font-weight: bold;
    font-size: 10px;
    padding: 12px;
    cursor: pointer;
    width: 100%;
}

.mfe-draw-card-btn:active {
    border-top: 2px solid var(--mfe-os-shadow-dark);
    border-left: 2px solid var(--mfe-os-shadow-dark);
    border-right: 2px solid var(--mfe-os-shadow-light);
    border-bottom: 2px solid var(--mfe-os-shadow-light);
}

.mfe-drawn-card-display {
    flex-basis: 50%;
}

.mfe-pitch-card {
    background: #ffffff;
    border: 2px solid #808080;
    border-radius: 6px;
    padding: 10px;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
}

.mfe-card-type {
    font-size: 7px;
    color: #ff007f;
    font-weight: bold;
    letter-spacing: 1px;
}

.mfe-card-title {
    font-family: var(--mfe-font-title);
    font-size: 11px;
    font-weight: bold;
    margin: 4px 0;
}

.mfe-card-desc {
    font-size: 9px;
    color: #333333;
    text-align: center;
    margin: 0;
}

.mfe-vc-feedback-box {
    background: #ffffe0;
    border: 1px solid #808080;
    padding: 8px 12px;
    margin-top: 15px;
    font-size: 11px;
}

.mfe-vc-avatar {
    font-weight: bold;
    color: #800000;
}

.mfe-vc-quote {
    margin: 4px 0 0 0;
    font-style: italic;
}

.mfe-os-footer {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    padding: 4px 8px;
    border-top: 1px solid var(--mfe-os-shadow-dark);
}


/* ==========================================================================
   PHASE 3: B2B HOVER PREVIEWS (THE SYNCH STATION)
   ========================================================================== */
.mfe-synch-gallery-container {
    padding: 10px 0;
}

.mfe-synch-section-title {
    color: var(--mfe-synch-primary) !important;
    font-size: 16px !important;
    text-align: center;
    margin-bottom: 25px !important;
}

.mfe-synch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mfe-synch-tile {
    background: rgba(28, 31, 48, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--mfe-transition-fluid);
}

.mfe-synch-tile:hover {
    border-color: var(--mfe-synch-primary);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.2);
    transform: translateY(-4px);
}

.mfe-synch-video-mock {
    height: 120px;
    background: #1c1f30;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

/* Individual tile background visuals */
.mfe-synch-tile:nth-child(1) .mfe-synch-video-mock {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('http://millenniumfalck.com/wp-content/uploads/2020/01/blocks-image-22.jpg');
}

.mfe-synch-tile:nth-child(2) .mfe-synch-video-mock {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('http://millenniumfalck.com/wp-content/uploads/2020/01/blocks-image-23.jpg');
}

.mfe-synch-tile:nth-child(3) .mfe-synch-video-mock {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('http://millenniumfalck.com/wp-content/uploads/2020/01/blocks-image-24.jpg');
}

.mfe-tile-play-indicator {
    font-size: 24px;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.mfe-synch-tile:hover .mfe-tile-play-indicator {
    opacity: 1;
    transform: scale(1.2);
    color: var(--mfe-synch-primary);
}

.mfe-tile-info {
    padding: 15px;
}

.mfe-tile-genre {
    font-family: var(--mfe-font-title);
    font-size: 7px;
    color: var(--mfe-synch-primary);
    font-weight: 700;
    letter-spacing: 1px;
}

.mfe-tile-title {
    font-family: var(--mfe-font-title);
    font-size: 12px !important;
    color: #ffffff;
    margin: 4px 0 8px 0 !important;
}

.mfe-tile-desc {
    font-size: 10px;
    color: #b6c6c9;
    margin: 0;
    line-height: 1.4;
}

/* Glitch visual effect on hover */
.mfe-glitch-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: transparent;
    pointer-events: none;
}

.mfe-synch-tile:hover .mfe-glitch-overlay {
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
}


/* ==========================================================================
   STRUCTURE ENGINE v2.0 — LAYOUT, TYPE SCALE & CONTENT FOUNDATIONS
   ========================================================================== */

/* --- Fluid Type Scale (clamp-based, replaces conflicting h1/h2/h3 sizes) --- */
.mfe-premium-active h1,
.mfe-premium-active .title-h1 {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 3.5rem) !important;
    line-height: 1.1 !important;
    letter-spacing: 0.06em !important;
    font-weight: 900 !important;
    font-family: var(--mfe-font-title) !important;
    text-transform: uppercase !important;
}

.mfe-premium-active h2,
.mfe-premium-active .title-h2 {
    font-size: clamp(1.25rem, 2.5vw + 0.5rem, 2.25rem) !important;
    line-height: 1.2 !important;
    letter-spacing: 0.04em !important;
    font-weight: 700 !important;
    font-family: var(--mfe-font-title) !important;
    text-transform: uppercase !important;
}

.mfe-premium-active h3,
.mfe-premium-active .title-h3 {
    font-size: clamp(1rem, 1.5vw + 0.4rem, 1.5rem) !important;
    line-height: 1.3 !important;
    letter-spacing: 0.04em !important;
    font-weight: 700 !important;
    font-family: var(--mfe-font-title) !important;
    text-transform: uppercase !important;
}

.mfe-premium-active h4,
.mfe-premium-active .title-h4 {
    font-size: clamp(0.875rem, 1vw + 0.3rem, 1.125rem) !important;
    line-height: 1.4 !important;
    letter-spacing: 0.06em !important;
    font-weight: 600 !important;
    font-family: var(--mfe-font-title) !important;
    text-transform: uppercase !important;
}

/* Body copy scale */
.mfe-premium-active p,
.mfe-premium-active .styled-subtitle,
.mfe-premium-active .wpb_text_column p {
    font-size: clamp(0.9rem, 1vw + 0.2rem, 1.05rem) !important;
    line-height: 1.75 !important;
    font-weight: 300 !important;
    color: #c8d0e0 !important;
}

/* --- Layout Utilities --- */

/* Full-width section wrapper with consistent vertical rhythm */
.mfe-section {
    padding: 80px 0;
    position: relative;
}

.mfe-section--sm  { padding: 48px 0; }
.mfe-section--lg  { padding: 120px 0; }

/* Centered content container */
.mfe-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Narrow container for text-heavy columns */
.mfe-container--narrow {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Two-column 60/40 split */
.mfe-col-split {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}
.mfe-col-split--left  { flex: 0 0 58%; }
.mfe-col-split--right { flex: 1; }

/* Three-column equal grid */
.mfe-col-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* --- Trademark Superscript Styling --- */
.mfe-tm {
    font-size: 0.5em;
    vertical-align: super;
    font-family: var(--mfe-font-copy);
    font-weight: 300;
    letter-spacing: 0;
    opacity: 0.7;
    text-transform: none;
}

/* --- Divider / Section Label --- */
.mfe-label {
    display: inline-block;
    font-family: var(--mfe-font-title);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mfe-synch-primary);
    border: 1px solid rgba(0, 188, 212, 0.35);
    padding: 4px 14px;
    margin-bottom: 18px;
}

/* Horizontal rule in brand cyan */
.mfe-rule {
    border: none;
    border-top: 1px solid rgba(0, 188, 212, 0.2);
    margin: 0;
}

/* --- CTA Strip (Investor Relations / Contact) --- */
.mfe-cta-strip {
    background: linear-gradient(90deg, rgba(121, 82, 229, 0.08) 0%, rgba(0, 188, 212, 0.08) 100%);
    border-top: 1px solid rgba(0, 188, 212, 0.15);
    border-bottom: 1px solid rgba(0, 188, 212, 0.15);
    padding: 56px 24px;
    text-align: center;
}

.mfe-cta-strip__title {
    font-family: var(--mfe-font-title) !important;
    font-size: clamp(1rem, 2vw, 1.4rem) !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    margin: 0 0 8px !important;
}

.mfe-cta-strip__sub {
    font-size: 0.875rem !important;
    color: rgba(200, 208, 224, 0.65) !important;
    margin: 0 0 28px !important;
    font-weight: 300 !important;
}

/* Corporate-styled CTA button (neon cyan outline) */
.mfe-btn {
    display: inline-block;
    font-family: var(--mfe-font-title);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mfe-synch-primary);
    border: 1px solid var(--mfe-synch-primary);
    padding: 14px 32px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, box-shadow 0.3s ease;
}

.mfe-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--mfe-synch-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.mfe-btn:hover {
    color: #0b0c10;
    box-shadow: 0 0 16px rgba(0, 188, 212, 0.4);
    text-decoration: none;
}

.mfe-btn:hover::after { transform: scaleX(1); }

/* Sonic variant (purple) */
.mfe-btn--sonic {
    color: var(--mfe-sonic-primary);
    border-color: var(--mfe-sonic-primary);
}
.mfe-btn--sonic::after { background: var(--mfe-sonic-primary); }
.mfe-btn--sonic:hover  { box-shadow: 0 0 16px rgba(121, 82, 229, 0.4); }

/* Gaming variant (pink) */
.mfe-btn--gaming {
    color: var(--mfe-gaming-primary);
    border-color: var(--mfe-gaming-primary);
}
.mfe-btn--gaming::after { background: var(--mfe-gaming-primary); }
.mfe-btn--gaming:hover  { box-shadow: 0 0 16px rgba(255, 0, 127, 0.4); }

/* --- Latest Activity Strip --- */
.mfe-latest-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0, 188, 212, 0.1);
    border-top: 1px solid rgba(0, 188, 212, 0.15);
    border-bottom: 1px solid rgba(0, 188, 212, 0.15);
}

.mfe-latest-item {
    background: var(--mfe-dark-bg);
    padding: 32px 28px;
    transition: background 0.25s ease;
}

.mfe-latest-item:hover {
    background: rgba(255, 255, 255, 0.025);
}

.mfe-latest-item__dept {
    font-family: var(--mfe-font-title);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.mfe-latest-item--sonic  .mfe-latest-item__dept { color: var(--mfe-sonic-primary); }
.mfe-latest-item--gaming .mfe-latest-item__dept { color: var(--mfe-gaming-primary); }
.mfe-latest-item--synch  .mfe-latest-item__dept { color: var(--mfe-synch-primary); }

.mfe-latest-item__title {
    font-family: var(--mfe-font-title) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    line-height: 1.4 !important;
    letter-spacing: 0.03em !important;
    margin: 0 0 8px !important;
    text-transform: none !important;
}

.mfe-latest-item__meta {
    font-size: 0.72rem !important;
    color: rgba(200, 208, 224, 0.5) !important;
    margin: 0 !important;
    font-weight: 300 !important;
}

/* --- Navigation CTA Button (sticky header button) --- */
.mfe-nav-cta {
    font-family: var(--mfe-font-title) !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--mfe-synch-primary) !important;
    border: 1px solid rgba(0, 188, 212, 0.5) !important;
    padding: 8px 20px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}
.mfe-nav-cta:hover {
    background: var(--mfe-synch-primary) !important;
    color: #0b0c10 !important;
    border-color: var(--mfe-synch-primary) !important;
}

/* --- Silly Con Valley page: fix light section background --- */
.page-id-1934 .vc_row[style*="background-color: #f1f4f3"],
.page-id-1934 .vc_row[style*="background-color:#f1f4f3"],
.page-id-1934 .wpb_row.vc_custom_1775413547556 {
    background-color: #0d0d18 !important;
}
/* Fix text that went dark on that section */
.page-id-1934 .vc_custom_1775413547556 p,
.page-id-1934 .vc_custom_1775413547556 li,
.page-id-1934 .vc_custom_1775413547556 .vc_column_text {
    color: #c8d0e0 !important;
}
/* Quickfinder tags — make sure they read on dark */
.page-id-1934 .gem-quickfinder-item-title {
    color: #ffffff !important;
}
.page-id-1934 .gem-quickfinder-item-text {
    color: #c8d0e0 !important;
}

/* --- Mobile Overrides --- */
@media (max-width: 768px) {
    /* Fix bento column padding crush (was 90px, unusable on mobile) */
    .gem-textbox-content {
        padding-left: 24px !important;
        padding-right: 24px !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* Stack layout columns */
    .mfe-col-split,
    .mfe-col-3 {
        display: block;
    }
    .mfe-col-split--left,
    .mfe-col-split--right { width: 100%; }
    .mfe-col-3 > * { margin-bottom: 20px; }

    /* Latest strip stacks vertically */
    .mfe-latest-strip {
        grid-template-columns: 1fr;
    }

    /* Section padding tightens on mobile */
    .mfe-section     { padding: 48px 0; }
    .mfe-section--lg { padding: 64px 0; }

    /* CTA strip compact */
    .mfe-cta-strip { padding: 40px 20px; }
}

@media (max-width: 480px) {
    /* Ultra-mobile: bento columns stack fully */
    .gem-textbox-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .mfe-btn {
        display: block;
        text-align: center;
        margin: 8px 0;
    }
}

/* --- 4K / Large Display Adjustments --- */
@media (min-width: 2560px) {
    .mfe-container {
        max-width: 1600px;
    }
    .mfe-section    { padding: 120px 0; }
    .mfe-section--lg { padding: 180px 0; }
}

/* ==========================================================================
   END STRUCTURE ENGINE v2.0
   ========================================================================== */

