/**
 * Mastery QR Workspace - Design Tokens & Layouts
 * High-Performance UI/UX Refinement
 */

:root {
    --brand-500: #5355f3; /* Darkened to pass AA contrast (4.5:1) with white text */
    --brand-600: #4338ca;
    --brand-accent: #10b981;
    
    /* Luminous Theme Orchestration */
    --nexus-bg: #ffffff;
    --nexus-surface: #f1f5f9;
    --nexus-card: #ffffff;
    --nexus-text-main: #0f172a;
    --nexus-text-sub: #475569; /* Darker slate for better light mode visibility */
    --nexus-border: rgba(0, 0, 0, 0.08);
    --nexus-glass: rgba(255, 255, 255, 0.9);
}

.dark {
    --nexus-bg: #020617;
    --nexus-surface: #0f172a;
    --nexus-card: rgba(15, 23, 42, 0.6);
    --nexus-text-main: #f8fafc;
    --nexus-text-sub: #cbd5e1; /* Brightened for contrast in dark mode */
    --nexus-border: rgba(255, 255, 255, 0.05);
    --nexus-glass: rgba(15, 23, 42, 0.6);
}

/* Base Refinements */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--nexus-bg);
    color: var(--nexus-text-main);
}

.glass-panel {
    background: var(--nexus-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--nexus-border);
    border-radius: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Section Headers */
h3.uppercase {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    font-weight: 900;
}

h3 span.rounded-full {
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

section:hover h3 span.rounded-full {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--brand-500);
    color: white;
}

/* Master Input Styling */
.dark-input {
    background: var(--nexus-card);
    border: 1px solid var(--nexus-border);
    border-radius: 1.25rem;
    padding: 0.85rem 1.25rem; /* Flexible padding, components will override for icons */
    outline: none;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--nexus-text-main);
}

.dark-input::placeholder {
    color: var(--nexus-text-sub);
    opacity: 0.5;
}

.dark-input:focus {
    border-color: var(--brand-500);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Adaptive Card Overrides (Fixes hardcoded dark backgrounds) */
.ai-art-container {
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%) !important;
    border-color: rgba(99, 102, 241, 0.2) !important;
    color: #f8fafc !important;
}

.light .ai-art-container {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05) !important;
    color: #1e293b !important;
}

.light .ai-art-container h4, 
.light .ai-art-container p, 
.light .ai-art-container label,
.light .ai-art-container span:not(.bg-brand-500) {
    color: #1e293b !important;
}

.light .ai-art-container .bg-white\/10,
.light .ai-art-container .bg-white\/5 {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

/* Global Theme Overrides for Components */
.bg-slate-900, .bg-slate-950, .bg-gray-50 { background-color: var(--nexus-surface) !important; }
.dark .bg-slate-900 { background-color: #0f172a !important; }
.dark .bg-slate-950 { background-color: #020617 !important; }

.text-white { color: var(--nexus-text-main) !important; }
.text-slate-500, .text-slate-600, .text-slate-400, .text-gray-400, .text-gray-500 { color: var(--nexus-text-sub) !important; }

.border-white\/5, .border-white\/10, .border-gray-100, .border-slate-800 { border-color: var(--nexus-border) !important; }
.bg-white\/5, .bg-white\/10, .bg-slate-900\/30 { background-color: var(--nexus-card) !important; }

/* Label Refinement */
label {
    color: var(--nexus-text-sub) !important;
    font-weight: 700 !important;
}

.section-subtitle {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--brand-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
    margin-left: 2.75rem;
    opacity: 0.8;
}

/* Design Hub Navigation */
.design-hub-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.design-hub-scroll::-webkit-scrollbar {
    display: none;
}

.nav-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--nexus-card);
    border: 1px solid var(--nexus-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-500);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-arrow:hover {
    background: var(--brand-500);
    color: white;
    transform: scale(1.1);
}

/* Modal Precision Positioning */
.fixed.inset-0:not(.hidden) {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 1.5rem; /* Reduced padding for mobile */
}

/* Modal Specific Glass Panel Constraints */
/* Modal Specific Glass Panel Constraints */
.fixed .glass-panel, 
.absolute .glass-panel {
    max-height: 90vh;
    overflow-y: auto;
}

#preview-sidebar-dock .glass-panel,
#generator-control-panel .glass-panel {
    max-height: none !important;
    overflow-y: visible !important;
}

#scanner-video-container {
    max-width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 2rem;
}

@media (max-width: 768px) {
    .glass-panel {
        max-height: 100vh;
        border-radius: 0;
    }
}

/* Cluster Hub - Nexus Dock Orchestration */
#cluster-selection-hub h3 {
    margin-bottom: 1.5rem !important;
}

#cluster-container {
    display: flex;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding: 0.75rem 1.25rem;
    gap: 0.75rem;
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2.5rem;
    backdrop-blur: 20px;
    scrollbar-width: none;
}

.cluster-btn {
    flex: 0 0 auto;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    border-radius: 2rem;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.4);
}

.cluster-btn i {
    font-size: 1.75rem; /* Slightly larger for centering feel */
    margin-bottom: 0.25rem;
    display: block;
    line-height: 1;
}

.cluster-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}

.cluster-btn.active {
    background: var(--brand-500) !important;
    color: white !important;
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.5);
}

/* Sub-Type Chips Alignment & Style */
.operational-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), transparent);
    margin: 0.5rem 0; /* Minimized gap */
}

#type-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start; /* Left aligned */
    padding: 0 1rem;
}

.type-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 1.25rem;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.type-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    bottom: 25%;
    width: 2px;
    background: transparent;
    transition: all 0.3s;
}

.type-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.type-btn.active {
    background: rgba(99, 102, 241, 0.1) !important;
    border-color: rgba(99, 102, 241, 0.3) !important;
    color: var(--brand-500) !important;
}

.type-btn.active::before {
    background: var(--brand-500);
}

.type-btn i {
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

/* Glow Effects */
.glow-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glow-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.glow-btn:hover::before {
    transform: translateX(100%);
}

/* Marker Systems */
.marker-item {
    border-color: rgba(255, 255, 255, 0.05);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.5;
}

.marker-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    transform: scale(1.05);
}

.marker-item.active {
    border-color: var(--brand-500) !important;
    background: rgba(99, 102, 241, 0.1) !important;
    opacity: 1 !important;
    transform: scale(1.15);
    box-shadow: 0 15px 40px -10px rgba(99, 102, 241, 0.6);
    border-width: 3px !important;
}

/* Animation Suite */
@keyframes fade-in {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fade-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Layout Utilities */
aside.sticky {
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    scrollbar-width: none;
}

aside.sticky::-webkit-scrollbar {
    display: none;
}

/* Scrollbar Hide */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Spacing Rhythm */
.space-y-12 > * + * {
    margin-top: 3.5rem;
}

.border-t {
    border-color: rgba(0,0,0,0.05) !important;
}

.dark .border-t {
    border-color: rgba(255,255,255,0.05) !important;
}

/* Elite Glass Transitions */
.glass-fade {
    animation: glassFade 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes glassFade {
    0% { opacity: 0; filter: blur(10px); transform: scale(0.98); }
    100% { opacity: 1; filter: blur(0); transform: scale(1); }
}

.animate-slide-up-elite {
    animation: slideUpElite 0.7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes slideUpElite {
    0% { opacity: 0; transform: translateY(30px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Premium Global Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: content-box;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.5);
    background-clip: content-box;
}

.dark ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Custom Scrollbar Utility */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--brand-500);
    opacity: 0.3;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--brand-600);
    opacity: 1;
}

/* Final Production Refinements (Phase 500) */
.hero-title { margin-bottom: 20px !important; }
.hero-subtext { margin-bottom: 28px !important; max-width: 520px !important; }
.hero-cta { gap: 14px !important; }

.mode-scroll { position: relative; }
.mode-scroll::before,
.mode-scroll::after {
    content: "";
    position: absolute;
    top: 0;
    width: 32px;
    height: 100%;
    pointer-events: none;
    z-index: 20;
}
.mode-scroll::before {
    left: 0;
    background: linear-gradient(to right, var(--nexus-bg), transparent);
}
.mode-scroll::after {
    right: 0;
    background: linear-gradient(to left, var(--nexus-bg), transparent);
}

.step-item {
    cursor: pointer;
    transition: all 0.2s ease;
}
.step-item:hover {
    transform: translateY(-1px);
    opacity: 1;
}

.connector-active {
    background: linear-gradient(90deg, #6C63FF, #4F46E5) !important;
    height: 2px !important;
}

.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px !important;
    margin-top: 24px !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    margin-bottom: 40px !important;
}
.stats-left { font-size: 16px !important; font-weight: 600 !important; color: #FFFFFF !important; }
.stats-right { font-size: 14px !important; color: #A0AEC0 !important; }

.input-field {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.4) !important;
    transition: all 0.2s ease !important;
}
.input-field:focus {
    border-color: #6C63FF !important;
    box-shadow: 0 0 0 2px rgba(108,99,255,0.25) !important;
    background: rgba(255,255,255,0.05) !important;
}

.preview-card {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 16px !important;
}
.preview-section > * { margin-bottom: 14px !important; }

.qr-wrapper {
    padding: 24px !important;
    border-radius: 28px !important;
    background: #ffffff !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.logo-overlay {
    width: 16% !important;
    padding: 8px !important;
    border-radius: 12px !important;
    background: #0B0F1A !important;
    border: 2px solid rgba(255,255,255,0.08) !important;
}

.cta-primary {
    height: 60px !important;
    border-radius: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    background: linear-gradient(135deg, #6C63FF, #4F46E5) !important;
    box-shadow: 0 10px 35px rgba(108,99,255,0.45) !important;
    transition: all 0.2s ease !important;
}
.cta-primary:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 12px 40px rgba(108,99,255,0.5) !important;
}
.cta-primary:active { transform: scale(0.98) !important; }

.footer-text { color: #A0AEC0 !important; }
.section { margin-bottom: 40px !important; }

/* Senior Refinements (Phase 400) */
.stats-bar {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 3rem !important;
}
.stats-bar strong { color: #fff; font-size: 14px; font-weight: 700; }
.stats-bar span { color: #9CA3AF; font-size: 12px; font-weight: 500; }

.step-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #E5E7EB !important;
}

.step-inactive {
    color: #9CA3AF !important;
}

.step-active-circle {
    background: linear-gradient(135deg, #6C63FF, #4F46E5) !important;
    box-shadow: 0 0 10px rgba(108,99,255,0.5) !important;
    color: white !important;
    border-color: transparent !important;
}

.connector-completed {
    background: #6C63FF !important;
    height: 2px !important;
}

.cta-primary {
    height: 60px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #6C63FF, #4F46E5) !important;
    box-shadow: 0 10px 35px rgba(108,99,255,0.45) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.3s ease;
}
.cta-primary:hover {
    transform: scale(1.02);
}

.cta-subtext {
    font-size: 11px;
    color: #9CA3AF;
    margin-top: 8px;
    text-align: center;
    font-weight: 500;
}

.content-card {
    padding: 14px !important;
    gap: 8px !important;
    border-radius: 12px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
}
.content-card .icon {
    width: 20px !important;
    height: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-card:hover {
    border: 1px solid rgba(108,99,255,0.4) !important;
    background: rgba(255,255,255,0.05) !important;
}

.scan-success {
    font-size: 12px;
    color: #22C55E;
    margin-top: 6px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.warning-indicator {
    font-size: 12px;
    color: #FFB020;
    margin-top: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Premium Workspace Polish Overrides */
.stats-bar {
    padding: 18px 22px !important;
    border-radius: 20px !important;
    background: linear-gradient(180deg, rgba(18, 24, 38, 0.96), rgba(15, 23, 42, 0.72)) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22) !important;
    backdrop-filter: blur(18px);
}
.stats-left {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    letter-spacing: -0.02em;
}
.stats-right {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #A0AEC0 !important;
    text-transform: none;
}
.preview-card {
    border-radius: 20px !important;
    background: rgba(18, 24, 38, 0.7) !important;
    border-color: rgba(255,255,255,0.06) !important;
}
.qr-wrapper {
    padding: 20px !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}
.logo-overlay {
    width: 16% !important;
    min-width: 72px !important;
    min-height: 72px !important;
    padding: 8px !important;
    border-radius: 12px !important;
    background: #0B0F1A !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}
.cta-primary {
    height: 56px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #6C63FF, #4F46E5) !important;
    box-shadow: 0 8px 30px rgba(108,99,255,0.4) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.2s ease !important;
}
.cta-primary:hover {
    transform: scale(1.03) !important;
}
.cta-subtext {
    font-size: 11px;
    color: #A0AEC0;
    margin-top: 8px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.warning-indicator {
    color: #FFB020 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.warning-indicator i {
    font-size: 0.8rem;
}
.mode-scroll::before,
.mode-scroll::after {
    width: 32px;
}
.content-card {
    padding: 12px !important;
    gap: 6px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.content-card:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(108,99,255,0.38) !important;
    transform: translateY(-2px);
}
.step-item {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
}
.step-item:hover {
    transform: translateY(-4px) scale(1.02);
    opacity: 1;
}

#preview-container img {
    animation: qr-breathing 4s ease-in-out infinite;
}

@keyframes qr-breathing {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.015); filter: brightness(1.05); }
}

.node-btn.active {
    background: linear-gradient(135deg, #6C63FF, #4F46E5) !important;
    border-color: #6C63FF !important;
    color: white !important;
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.35) !important;
}
/* Mobile-First Orchestration (Phase 2.0) */
@media (max-width: 768px) {
    #master-workspace-root {
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin-top: 1rem !important;
        padding: 0 1rem !important;
    }

    #generator-control-panel {
        width: 100% !important;
        max-width: 100% !important;
        gap: 2rem !important;
    }

    #preview-sidebar-dock {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        top: 0 !important;
        order: 2; /* Move preview below builder */
    }

    /* Section Spacing */
    .section {
        margin-bottom: 24px !important;
    }

    /* Step Bar Optimization */
    .wizard-progress-shell {
        padding: 1rem !important;
        border-radius: 1.25rem !important;
    }

    /* Mode Selector Snap Scroll */
    .mode-scroll {
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 0 !important;
        margin: 0 -1rem !important; /* Bleed to edges */
    }
    
    #cluster-container {
        padding: 1rem !important;
        gap: 0.75rem !important;
    }

    .cluster-btn {
        min-width: 110px !important;
        height: 90px !important;
        scroll-snap-align: center !important;
    }

    /* Content Type Grid (2-column) */
    #type-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        overflow-x: visible !important;
        padding-bottom: 1rem !important;
    }

    .node-btn {
        width: 100% !important;
        min-width: 0 !important;
        height: 64px !important;
        padding: 0.75rem !important;
    }

    /* Input Optimization */
    .dark-input, 
    input[type="text"], 
    input[type="url"], 
    input[type="email"], 
    input[type="password"],
    select,
    textarea {
        min-height: 48px !important; /* Above 44px minimum */
        font-size: 16px !important; /* Prevents iOS auto-zoom */
        width: 100% !important;
    }

    /* Live Preview Constraints */
    .qr-wrapper {
        max-width: 280px !important;
        margin: 1rem auto !important;
    }

    /* Sticky Bottom CTA */
    .mobile-cta-fixed {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        padding: 1rem !important;
        background: linear-gradient(to top, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0));
        backdrop-blur: 10px;
        z-index: 1000 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .mobile-cta-btn {
        height: 60px !important;
        background: linear-gradient(135deg, #6C63FF, #4F46E5) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.2em !important;
        color: white !important;
        border-radius: 1.25rem !important;
        box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4) !important;
        font-size: 12px !important;
        border: none !important;
    }

    /* Hide redundant elements */
    .hidden-mobile {
        display: none !important;
    }

    /* Hero reduction */
    .hero-title {
        font-size: 2.25rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-subtext {
        font-size: 0.9rem !important;
    }
}
