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

/* ==========================================================================
   MORPHEUS TECH - MODERN LIGHT GLASSMORPHISM DESIGN SYSTEM
   ========================================================================== */
:root {
    --bg-base: #F8FAFC;
    --bg-surface: #FFFFFF;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;

    /* Vibrant Brand Accents */
    --brand-amber: #FACC15;
    --brand-yellow: #FEF08A;
    --brand-blue: #0284C7;
    --brand-indigo: #6366F1;
    --brand-emerald: #10B981;
    --brand-rose: #F43F5E;
    
    /* Glassmorphism Tokens */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-bg-dense: rgba(255, 255, 255, 0.9);
    --glass-bg-subtle: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.85);
    --glass-border-subtle: rgba(15, 23, 42, 0.08);
    --glass-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    --glass-shadow-lg: 0 30px 60px -15px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.95) inset;
    --glass-shadow-glow: 0 16px 35px -8px rgba(234, 179, 8, 0.25), 0 0 0 1px rgba(234, 179, 8, 0.3) inset;

    /* Hexagon Dimensions */
    --hex-w: 48px;
    --hex-h: 56px;
    --hex-w-sm: 44px;
    --hex-h-sm: 50px;
    --hex-w-lg: 54px;
    --hex-h-lg: 62px;

    /* Fonts */
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* Global Reset & Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-base);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Mesh Gradients */
.bg-mesh-luminous {
    background-color: #F8FAFC;
    background-image: 
        radial-gradient(at 15% 10%, rgba(250, 204, 21, 0.15) 0px, transparent 50%),
        radial-gradient(at 85% 15%, rgba(14, 165, 233, 0.12) 0px, transparent 50%),
        radial-gradient(at 50% 85%, rgba(99, 102, 241, 0.08) 0px, transparent 50%),
        linear-gradient(to right, rgba(15, 23, 42, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 32px 32px, 32px 32px;
}

/* ==========================================================================
   STAGGER SCROLL ANIMATION ENGINE
   ========================================================================== */
.stagger-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--stagger-i, 0) * 75ms);
    will-change: opacity, transform;
}

.stagger-item.stagger-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .stagger-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   GLASSMORPHISM CORE COMPONENTS
   ========================================================================== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.glass-panel-dense {
    background: var(--glass-bg-dense);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: var(--glass-shadow-lg);
}

.glass-card-interactive {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease,
                background-color 0.35s ease;
    transition-delay: 0s !important;
    will-change: transform, box-shadow;
    position: relative;
    cursor: default;
}

/* Stagger visible cards clear delay to allow instant snappy hover response */
.stagger-item.stagger-visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s !important;
}

/* Interactive Card Smooth Lift & Ambient Glow */
.glass-card-interactive:hover {
    transform: translateY(-8px) scale(1.008);
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.95) inset;
    transition-delay: 0s !important;
    z-index: 10;
}

/* Colorful Gradient Borders */
.border-gradient-amber {
    border: 1.5px solid transparent;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
                linear-gradient(135deg, #FEF08A, #FDE047, #EAB308) border-box;
}

.border-gradient-blue {
    border: 1.5px solid transparent;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
                linear-gradient(135deg, #0EA5E9, #38BDF8, #6366F1) border-box;
}

.border-gradient-indigo {
    border: 1.5px solid transparent;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
                linear-gradient(135deg, #8B5CF6, #6366F1, #EC4899) border-box;
}

.border-gradient-emerald {
    border: 1.5px solid transparent;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
                linear-gradient(135deg, #10B981, #34D399, #059669) border-box;
}

.border-gradient-rose {
    border: 1.5px solid transparent;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
                linear-gradient(135deg, #F43F5E, #FB7185, #FACC15) border-box;
}

/* Specific Glowing Shadow Blooms for Colored Cards */
.glass-card-interactive.border-gradient-amber:hover,
.hover-lift.border-gradient-amber:hover {
    box-shadow: 0 24px 48px -10px rgba(234, 179, 8, 0.35), 0 0 0 1.5px rgba(250, 204, 21, 0.6) inset;
}

.glass-card-interactive.border-gradient-blue:hover,
.hover-lift.border-gradient-blue:hover {
    box-shadow: 0 24px 48px -10px rgba(14, 165, 233, 0.35), 0 0 0 1.5px rgba(56, 189, 248, 0.6) inset;
}

.glass-card-interactive.border-gradient-indigo:hover,
.hover-lift.border-gradient-indigo:hover {
    box-shadow: 0 24px 48px -10px rgba(99, 102, 241, 0.35), 0 0 0 1.5px rgba(129, 140, 248, 0.6) inset;
}

.glass-card-interactive.border-gradient-emerald:hover,
.hover-lift.border-gradient-emerald:hover {
    box-shadow: 0 24px 48px -10px rgba(16, 185, 129, 0.35), 0 0 0 1.5px rgba(52, 211, 153, 0.6) inset;
}

.glass-card-interactive.border-gradient-rose:hover,
.hover-lift.border-gradient-rose:hover {
    box-shadow: 0 24px 48px -10px rgba(244, 63, 94, 0.35), 0 0 0 1.5px rgba(251, 113, 133, 0.6) inset;
}

/* Card Icon Badge Pop Micro-Animation */
.glass-card-interactive .card-icon,
.glass-card-interactive .w-12.h-12,
.glass-card-interactive .w-11.h-11 {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.glass-card-interactive:hover .card-icon,
.glass-card-interactive:hover .w-12.h-12,
.glass-card-interactive:hover .w-11.h-11 {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.12);
}

/* Card Action Arrow Micro-Animation */
.glass-card-interactive .card-arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-interactive:hover .card-arrow {
    transform: translateX(6px);
}

/* ==========================================================================
   COLORFUL ACTION BUTTONS & CTA (YELLOW FOOTER GRADIENT)
   ========================================================================== */
.btn-colorful-amber {
    background-color: #FACC15;
    background: #FACC15;
    color: #0F172A !important;
    font-weight: 700;
    border: 1px solid #EAB308;
    box-shadow: 0 10px 20px -5px rgba(234, 179, 8, 0.45);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-colorful-amber:hover {
    background-color: #EAB308;
    background: #EAB308;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -5px rgba(234, 179, 8, 0.65);
    color: #0F172A !important;
}

/* Solid Brand Yellow Text */
.text-gradient-yellow {
    color: #EAB308;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.btn-colorful-blue {
    background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
    color: #FFFFFF;
    box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.35);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-colorful-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -5px rgba(2, 132, 199, 0.5);
    filter: brightness(1.05);
}

.btn-glass-colorful {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    color: var(--text-primary);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: all 0.25s ease;
}
.btn-glass-colorful:hover {
    background: #FFFFFF;
    border-color: #FACC15;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 179, 8, 0.25);
}

/* ==========================================================================
   FOUNDER CARD & GENERAL CARD HOVER ANIMATIONS
   ========================================================================== */
.founder-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, box-shadow;
}

.founder-photo-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.founder-photo {
    filter: grayscale(100%) contrast(108%);
    transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-card:hover .founder-photo {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.03);
}

.founder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px -15px rgba(234, 179, 8, 0.35), 0 0 0 1.5px rgba(234, 179, 8, 0.5) inset;
}

/* General Hover-Lift for Dense Panels (Studio Summary, Founder Preview, Consultation Card) */
.hover-lift {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
    will-change: transform, box-shadow;
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px -15px rgba(234, 179, 8, 0.3), 0 0 0 1.5px rgba(250, 204, 21, 0.45) inset;
}

/* Process Step Cards (About Page) */
.process-card {
    background-color: #F8FAFC;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.32s ease, 
                background-color 0.32s ease;
    will-change: transform, box-shadow;
}

.process-card:hover {
    transform: translateY(-6px);
    background-color: #FFFFFF !important;
    border-color: #FACC15 !important;
    box-shadow: 0 18px 36px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(250, 204, 21, 0.3) inset;
}

.process-card span[class*="rounded"] {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover span[class*="rounded"] {
    transform: translateY(-2px) scale(1.06);
}

/* Metric Chip Badges (About Page) */
.metric-chip {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.25s ease, 
                background-color 0.25s ease, 
                border-color 0.25s ease;
    will-change: transform;
}

.metric-chip:hover {
    transform: translateY(-3px);
    background-color: #FFFFFF !important;
    border-color: #FACC15 !important;
    box-shadow: 0 10px 20px -5px rgba(234, 179, 8, 0.25);
}

/* Contact Coordinate Cards (Contact Page) */
.contact-card {
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.28s ease, 
                border-color 0.28s ease,
                background-color 0.28s ease;
    will-change: transform, box-shadow;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: #FACC15 !important;
    box-shadow: 0 14px 28px -6px rgba(234, 179, 8, 0.25);
}

/* Admin Dashboard Metric Cards */
.admin-metric-card {
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
    will-change: transform;
}

.admin-metric-card:hover {
    transform: translateY(-4px);
    border-color: #FACC15 !important;
    box-shadow: 0 16px 32px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(250, 204, 21, 0.3) inset;
}

/* ==========================================================================
   DYNAMIC ISLAND ROUNDED RECTANGLE HEADER (YELLOWISH GLASS BLUR & BRIGHT YELLOW BORDER)
   ========================================================================== */
.hex-header-container {
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(254, 240, 138, 0.75) 0%, rgba(253, 224, 71, 0.52) 50%, rgba(254, 249, 195, 0.80) 100%);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 2px solid #FACC15;
    box-shadow: 0 16px 36px -8px rgba(234, 179, 8, 0.25), 0 0 18px rgba(250, 204, 21, 0.35);
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .hex-header-container {
        border-radius: 1.75rem;
    }
}

/* Hexagon Clip Paths */
.clip-hexagon {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Yellow Hexagonal Logo Badge (High Visibility, Bold Size & Interactive Hover) */
.hex-logo-badge {
    width: 48px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FEF08A 0%, #FDE047 50%, #EAB308 100%);
    box-shadow: 0 4px 14px rgba(234, 179, 8, 0.4), 0 0 0 2px #FEF08A inset;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
}

@media (min-width: 640px) {
    .hex-logo-badge {
        width: 52px;
        height: 60px;
    }
}

.hex-logo-badge:hover {
    transform: scale(1.14) rotate(4deg);
    box-shadow: 0 8px 26px rgba(234, 179, 8, 0.7), 0 0 20px rgba(250, 204, 21, 0.85);
    filter: brightness(1.08);
}

.hex-logo-badge img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    filter: brightness(0); /* Converts white geometric emblem to solid obsidian black for maximum visibility */
    transition: transform 0.3s ease;
}

.hex-logo-badge:hover img {
    transform: scale(1.08);
}

/* ==========================================================================
   BACKEND HEXAGONAL NAVIGATION DOCK (YELLOWISH GLASS BLUR & BRIGHT YELLOW BORDER)
   ========================================================================== */
.admin-hex-dock {
    background: linear-gradient(135deg, rgba(254, 240, 138, 0.80) 0%, rgba(253, 224, 71, 0.60) 50%, rgba(254, 249, 195, 0.82) 100%);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 2px solid #FACC15;
    box-shadow: 0 20px 45px -10px rgba(234, 179, 8, 0.3), 0 0 20px rgba(250, 204, 21, 0.45);
}

.admin-hex-node {
    width: 46px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s ease;
    position: relative;
    background: #FACC15; /* Bright yellow border wrapper */
    padding: 2px;
}

@media (min-width: 640px) {
    .admin-hex-node {
        width: 54px;
        height: 60px;
    }
}

.admin-hex-node:hover {
    transform: scale(1.12);
    z-index: 20;
    filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.7));
}

.admin-hex-node .hex-inner {
    background-color: #FFFFFF;
    color: #1E293B;
}

.admin-hex-node.active {
    background: #EAB308;
    filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.8));
}

.admin-hex-node.active .hex-inner {
    background-color: #0F172A !important;
    color: #FACC15 !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.45) !important;
}

/* ==========================================================================
   INFINITE HEXAGONAL FLOATING DOCK (YELLOWISH GLASS BLUR & BRIGHT YELLOW BORDER)
   ========================================================================== */
.dock-shell-light {
    background: linear-gradient(135deg, rgba(254, 240, 138, 0.80) 0%, rgba(253, 224, 71, 0.58) 50%, rgba(254, 249, 195, 0.82) 100%);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 2px solid #FACC15;
    box-shadow: 0 20px 45px -10px rgba(234, 179, 8, 0.25), 0 0 20px rgba(250, 204, 21, 0.45);
}

/* Pinned Far-Left Logo in Dock */
.dock-pinned-logo {
    flex-shrink: 0;
    width: 48px;
    height: 54px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 40;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.dock-pinned-logo:hover {
    transform: scale(1.14) rotate(4deg);
}

@media (min-width: 640px) {
    .dock-pinned-logo {
        width: 54px;
        height: 62px;
    }
}

/* Infinite Carousel Hex Nodes (Bright Yellow Hexagonal Border on Inactive Items) */
.hex-outer {
    width: var(--hex-w-sm);
    height: var(--hex-h-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.12s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s ease;
    position: relative;
    background: #FACC15; /* Bright yellow border wrapper */
    padding: 2px;
}

@media (min-width: 640px) {
    .hex-outer {
        width: var(--hex-w-lg);
        height: var(--hex-h-lg);
        padding: 2.2px;
    }
}

.hex-outer:hover {
    filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.85));
}

.hex-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background-color: #FFFFFF;
    color: #1E293B;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

/* Active State in Infinite Dock */
.hex-outer.active-hex {
    background: #EAB308;
    filter: drop-shadow(0 0 12px rgba(234, 179, 8, 0.8));
}

.hex-outer.active-hex .hex-inner {
    background-color: #0F172A !important;
    color: #FACC15 !important;
}

/* ==========================================================================
   YELLOW FOOTER STYLING (BOUNDED CARD, HIGH CONTRAST & VISIBLE TYPOGRAPHY)
   ========================================================================== */
.footer-yellow {
    background: linear-gradient(135deg, #FEF08A 0%, #FDE047 50%, #EAB308 100%);
    border: 2.5px solid #FACC15;
    box-shadow: 0 25px 60px -15px rgba(234, 179, 8, 0.35), 0 0 24px rgba(250, 204, 21, 0.35);
}

/* Floating Logo Animation for Footer */
@keyframes floatLogoSlow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.22));
    }
    50% {
        transform: translateY(-12px) rotate(1.5deg);
        filter: drop-shadow(0 22px 30px rgba(15, 23, 42, 0.35));
    }
}

.animate-floating-logo {
    animation: floatLogoSlow 4.5s ease-in-out infinite;
    will-change: transform, filter;
}

@media (prefers-reduced-motion: reduce) {
    .animate-floating-logo {
        animation: none !important;
    }
}

/* Dock Edge Fade Masking */
.dock-mask {
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Stationary Reticle */
@keyframes reticleGlow {
    0%, 100% { opacity: 0.85; filter: drop-shadow(0 0 3px rgba(15, 23, 42, 0.5)); }
    50% { opacity: 1; filter: drop-shadow(0 0 8px rgba(234, 179, 8, 0.8)); }
}
.animate-reticle {
    animation: reticleGlow 2.2s infinite ease-in-out;
}

/* Safe Area Padding for Floating Dock */
.safe-dock-pad {
    padding-bottom: 125px;
}

/* ==========================================================================
   POPUP MODALS (GLASSMORPHISM)
   ========================================================================== */
.modal-overlay-glass {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal-content-glass {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(234, 179, 8, 0.2) inset;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* Custom Clean Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(241, 245, 249, 0.7);
}
::-webkit-scrollbar-thumb {
    background: rgba(203, 213, 225, 0.9);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 1);
}

/* ==========================================================================
   RESPONSIVE DOCK 'MORE' SUBMENU (MOBILE & TABLET: < 1024px)
   ========================================================================== */
@keyframes dockSubmenuPopIn {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.94);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-pop-in {
    animation: dockSubmenuPopIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.dock-more-submenu {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(254, 252, 232, 0.98) 100%);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 2px solid #FACC15;
    box-shadow: 0 25px 55px -10px rgba(234, 179, 8, 0.38), 0 0 25px rgba(250, 204, 21, 0.35);
}

.dock-more-item {
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.dock-more-item:hover {
    transform: translateX(3px);
    background: rgba(254, 240, 138, 0.45);
}

.dock-more-item.active {
    background: #0F172A !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.3);
}

.dock-more-item.active .item-icon-box {
    background: #FACC15 !important;
    color: #0F172A !important;
}

.dock-more-item.active .item-sub {
    color: #CBD5E1 !important;
}

/* ==========================================================================
   DYNAMIC COMPANY LOGO SHOWCASE & 3D INTERACTIVE HERO
   ========================================================================== */
.hero-dynamic-stage {
    perspective: 1100px;
    position: relative;
}

.hero-dynamic-card {
    position: relative;
    border-radius: 2.25rem;
    background: radial-gradient(circle at 50% 50%, rgba(254, 240, 138, 0.42) 0%, rgba(255, 255, 255, 0.94) 55%, rgba(254, 249, 195, 0.55) 100%);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 2.5px solid #FACC15;
    box-shadow: 0 25px 60px -12px rgba(234, 179, 8, 0.32), 0 0 35px rgba(250, 204, 21, 0.32);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    transform-style: preserve-3d;
    overflow: hidden;
}

.hero-dynamic-card:hover {
    box-shadow: 0 32px 75px -12px rgba(234, 179, 8, 0.45), 0 0 50px rgba(250, 204, 21, 0.45);
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-10px) rotate(1.8deg) scale(1.03);
    }
}

.animate-hero-logo {
    animation: heroLogoFloat 4.8s ease-in-out infinite;
    filter: drop-shadow(0 12px 24px rgba(234, 179, 8, 0.45));
}

@keyframes heroRingRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes heroRingRotateReverse {
    0% { transform: translate(-50%, -50%) rotate(360deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}

.animate-ring-clockwise {
    animation: heroRingRotate 22s linear infinite;
}

.animate-ring-counter {
    animation: heroRingRotateReverse 16s linear infinite;
}

@keyframes heroGlowPulse {
    0%, 100% {
        opacity: 0.50;
        transform: translate(-50%, -50%) scale(0.92);
    }
    50% {
        opacity: 0.90;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.animate-hero-glow {
    animation: heroGlowPulse 4s ease-in-out infinite;
}

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

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

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

.animate-float-badge-1 {
    animation: floatBadge1 3.8s ease-in-out infinite;
}

.animate-float-badge-2 {
    animation: floatBadge2 4.2s ease-in-out infinite 0.7s;
}

.animate-float-badge-3 {
    animation: floatBadge3 3.5s ease-in-out infinite 1.4s;
}

.hero-glow-blob {
    position: absolute;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.45) 0%, rgba(253, 224, 71, 0.25) 50%, transparent 70%);
    filter: blur(40px);
    pointer-events-none;
}


