/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary-cyan, #39F2FF);
    color: var(--color-bg-base, #0a1628);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 8px 0;
}

.skip-to-content:focus {
    top: 0;
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary-cyan, #39F2FF);
    color: var(--color-bg-base, #0a1628);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 8px 0;
}

.skip-to-content:focus {
    top: 0;
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: "Manrope", "Noto Sans", "DejaVu Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
            background: #0a1628;
            color: #E5E9FF;
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: "Manrope", "Noto Sans", "DejaVu Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
        }

        .app-container {
            position: relative;
            min-height: var(--viewport-min-height, 100vh);
        }

        .content-wrapper {
            position: relative;
            z-index: 10;
        }
        
        .content-wrapper header.main-header,
        .content-wrapper .main-header {
            border: none !important;
            border-bottom: none !important;
            outline: none !important;
            box-shadow: none !important;
            background: transparent !important;
        }
        
        .content-wrapper header.main-header::after,
        .content-wrapper header.main-header::before,
        .content-wrapper .main-header::after,
        .content-wrapper .main-header::before {
            display: none !important;
            content: none !important;
            height: 0 !important;
            width: 0 !important;
        }

        /* ═══════════════════════════════════════════════════════════
           ANIMATED BACKGROUND WITH STARS
           ═══════════════════════════════════════════════════════════ */
        .animated-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .bg-layer {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        /* Main gradient background - navy blue to purple */
        .bg-base {
            background: linear-gradient(180deg,
                    #08113A 0%,
                    #0a1628 20%,
                    #0d1a35 40%,
                    #1a1f4a 60%,
                    #1f1d52 80%,
                    #2a1f5e 100%);
        }

        /* Purple glow bottom left */
        .bg-glow-left {
            background: radial-gradient(ellipse at 0% 100%,
                    rgba(107, 60, 255, 0.25) 0%,
                    rgba(107, 60, 255, 0.1) 30%,
                    transparent 60%);
        }

        /* Purple glow bottom center */
        .bg-glow-center {
            background: radial-gradient(ellipse at 50% 100%,
                    rgba(155, 93, 255, 0.15) 0%,
                    rgba(155, 93, 255, 0.05) 40%,
                    transparent 70%);
        }

        /* Vignette effect */
        .bg-vignette {
            background: radial-gradient(circle at 50% 50%,
                    transparent 0%,
                    rgba(8, 17, 58, 0.4) 100%);
        }

        /* Stars container */
        .stars-container {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            opacity: 0.65;
            animation: twinkle 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            will-change: opacity, transform;
            box-shadow: 0 0 2px rgba(255, 255, 255, 0.4);
        }

        .star.small {
            width: 1.5px;
            height: 1.5px;
            opacity: 0.5;
            box-shadow: 0 0 1.5px rgba(255, 255, 255, 0.3);
        }

        .star.medium {
            width: 2.5px;
            height: 2.5px;
            opacity: 0.7;
            box-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
        }

        .star.large {
            width: 4px;
            height: 4px;
            opacity: 0.8;
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.7), 0 0 8px rgba(255, 255, 255, 0.4);
        }

        @keyframes twinkle {
            0%,
            100% {
                opacity: 0.4;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.4);
            }
        }

        /* Header styles removed - using standard header from team.css */
        /* Keeping only custom button styles for login/signup */

        .btn-login {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 0.625rem 1.25rem;
            color: white;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 0.9375rem;
            will-change: transform, box-shadow;
        }

        .btn-login:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translate3d(0, -2px, 0);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
        }

        .btn-login:focus-visible {
            outline: 3px solid rgba(120, 200, 255, 0.95);
            outline-offset: 3px;
            border-radius: 14px;
        }

        .btn-signup {
            background: linear-gradient(135deg, #39F2FF 0%, #9B5DFF 100%);
            border: none;
            border-radius: 8px;
            padding: 0.625rem 1.25rem;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 6px 20px rgba(57, 242, 255, 0.4),
                        0 0 15px rgba(155, 93, 255, 0.3);
            font-size: 0.9375rem;
            will-change: transform, box-shadow;
        }

        .btn-signup:hover {
            transform: translate3d(0, -4px, 0) scale(1.05);
            box-shadow: 0 10px 30px rgba(57, 242, 255, 0.6),
                        0 0 25px rgba(155, 93, 255, 0.5);
        }

        .btn-signup:focus-visible {
            outline: 3px solid rgba(120, 200, 255, 0.95);
            outline-offset: 3px;
            border-radius: 14px;
        }

        /* Focus state for logout button */
        #logoutBtn:focus-visible {
            outline: 3px solid rgba(120, 200, 255, 0.95);
            outline-offset: 3px;
            border-radius: 14px;
        }

        /* Focus state for logo link */
        .logo:focus-visible {
            outline: 3px solid rgba(120, 200, 255, 0.95);
            outline-offset: 3px;
            border-radius: 14px;
        }


        .hero-section {
            min-height: calc(var(--viewport-min-height, 100vh) - 80px);
            padding: var(--space-4, 24px) var(--space-3, 16px);
            /* Fix stacking context to prevent text duplication */
            isolation: isolate;
            position: relative;
            overflow: hidden;
        }

        /* Hero Container: Copy + Visual side-by-side on desktop */
        .hero__container {
            max-width: var(--container, 1120px);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            column-gap: 48px;
            align-items: center;
            position: relative;
            z-index: var(--z-content, 10);
        }
        
        /* Background Layer: Stars + Nebula + Lens + Vignette */
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            /* Removed animated gradient for uniform background */
        }
        
        /* Stars Canvas (Balanced) */
        #starsCanvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.60; /* Cleaner, less busy */
        }
        
        /* Premium Nebula - Static (no breathing to avoid page blink effect) */
        .nebula {
            position: absolute;
            inset: -20%;
            z-index: 2;
            transform: translate3d(var(--nx, 0px), var(--ny, 0px), 0) scale(1.06);
            background:
                radial-gradient(circle at 18% 30%, rgba(120, 70, 255, 0.16) 0%, rgba(0, 0, 0, 0) 58%),
                radial-gradient(circle at 75% 35%, rgba(60, 180, 255, 0.13) 0%, rgba(0, 0, 0, 0) 62%),
                radial-gradient(circle at 45% 82%, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0) 56%);
            opacity: 0.52;
        }
        
        /* Mobile optimizations - Disable heavy effects for performance */
        @media (max-width: 768px) {
            /* Reduce grain opacity on mobile */
            .grain {
                opacity: 0.008;
            }
            
            /* Reduce nebula opacity on mobile */
            .nebula {
                opacity: 0.40;
            }
            
            /* Reduce lens opacity on mobile */
            .lens {
                opacity: 0.30;
            }
        }
        
        
        /* Subtle Lens - Premium Portal Hint (Static, no breathing to avoid blink) */
        .lens {
            position: absolute;
            width: min(820px, 115vw);
            height: min(820px, 115vw);
            left: 62%;
            top: 48%;
            transform: translate(-50%, -50%) translate3d(var(--lx, 0px), var(--ly, 0px), 0);
            border-radius: 50%;
            background: radial-gradient(circle at center,
                rgba(255, 255, 255, 0.06) 0%,
                rgba(140, 80, 255, 0.07) 24%,
                rgba(60, 180, 255, 0.05) 44%,
                rgba(0, 0, 0, 0) 68%);
            opacity: 0.38;
            z-index: 3;
        }
        
        /* Premium Beam Effects - Hidden (removed vertical lines) */
        .beam {
            display: none;
        }
        
        /* Subtle Grain Texture - Reduced for cleaner look */
        .grain {
            position: absolute;
            inset: 0;
            z-index: 5;
            pointer-events: none;
            opacity: 0.015;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            background-size: 300px 300px;
            mix-blend-mode: soft-light;
        }
        
        /* Vignette for Readability - Cleaner, less intense */
        .vignette {
            position: absolute;
            inset: 0;
            z-index: 9;
            pointer-events: none;
            background: radial-gradient(circle at 30% 20%,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.15) 60%,
                rgba(0, 0, 0, 0.30) 100%);
        }

        /* Hero Copy: H1 → Subtitle → CTAs (strict order) */
        .hero__copy {
            max-width: 620px;
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
            z-index: var(--z-content, 10);
        }

        .hero__copy > * {
            margin-left: 0;
            padding-left: 0;
            position: relative;
            z-index: 1;
        }

        /* Legacy support - map old class to new */
        .hero-content {
            max-width: 600px;
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
            z-index: var(--z-content, 10);
        }

        .hero-content > * {
            margin-left: 0;
            padding-left: 0;
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 0;
            margin-top: 0;
            letter-spacing: -0.04em;
            color: #67C0FF;
            /* Reduced glow for clarity - still premium but less noise */
            text-shadow:
                0 0 12px rgba(120, 70, 255, 0.35),
                0 0 24px rgba(60, 180, 255, 0.2);
            position: relative;
            z-index: 1;
            /* Prevent text duplication */
            isolation: isolate;
        }

        .hero-title.hero-title-smaller {
            font-size: clamp(2.25rem, 5vw, 3.25rem);
        }

        .hero-title .hero-brand-title {
            display: block;
            color: #67C0FF;
            /* Inherit text-shadow from parent, do NOT add another */
            text-shadow: inherit;
            position: relative;
            z-index: 1;
        }

        .hero-title .hero-title-main {
            display: block;
            color: #67C0FF;
            text-shadow: inherit;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease-out;
        }

        .tagline {
            font-size: 0.52em;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.5;
            margin-top: 12px;
            margin-bottom: 28px;
            max-width: 580px;
            /* Reduced text-shadow for less competition */
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
            /* Prevent text duplication */
            isolation: isolate;
        }
        
        .tagline-line {
            display: inline-block;
        }

        .tagline-emphasis {
            color: #FFA854;
            font-weight: 600;
            text-shadow: 
                0 0 12px rgba(255, 168, 84, 0.4),
                0 0 24px rgba(255, 168, 84, 0.2);
        }

        .hero-title.gradient-text {
            background: none;
            -webkit-background-clip: unset;
            -webkit-text-fill-color: unset;
            background-clip: unset;
        }

        .gradient-text {
            background: linear-gradient(90deg, #7DD6FF 0%, #5FA8FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.15rem, 2.2vw, 1.6rem);
            font-weight: 400;
            color: rgba(229, 233, 255, 0.8);
            margin-top: var(--space-4, 24px);
            margin-bottom: 0;
            line-height: 1.65;
            letter-spacing: 0.005em;
            /* Reduced glow - let H1 dominate */
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
            position: relative;
            z-index: 1;
            max-width: 62ch;
            /* Prevent text duplication */
            isolation: isolate;
        }

        .hero-subtitle .hero-subtitle-main {
            display: block;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        /* Hero badges styling for gaming/narrative feel */
        .hero-badges {
            animation: fadeInUp 1.2s ease-out 0.4s both;
        }

        .hero-badge {
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
                        opacity 0.3s ease,
                        box-shadow 0.3s ease;
            animation: badge-glow 4s ease-in-out infinite;
        }
        
        @keyframes badge-glow {
            0%, 100% {
                filter: brightness(1);
            }
            50% {
                filter: brightness(1.15);
            }
        }

        .hero-badge:hover {
            transform: translateY(-4px) scale(1.05);
            opacity: 1;
            animation: badge-bounce 0.6s ease-in-out;
        }
        
        @keyframes badge-bounce {
            0%, 100% {
                transform: translateY(-4px) scale(1.05);
            }
            50% {
                transform: translateY(-6px) scale(1.08);
            }
        }

        /* CTA subtitle styling */
        .cta-subtitle {
            animation: fadeInUp 1.4s ease-out 0.6s both;
        }

        /* Text reveal animations for gaming feel */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-description {
            font-size: clamp(1.0625rem, 1.5vw, 1.125rem);
            color: rgba(229, 233, 255, 0.7);
            margin-top: 1.25rem;
            margin-bottom: 0;
            line-height: 1.55;
        }

        .hero-cta-wrapper {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 520px;
            margin-top: var(--space-4, 24px);
            margin-bottom: 0;
        }

        /* Primary CTA - Game Start Button - Premium micro-interactions */
        .hero-cta-primary {
            background: linear-gradient(90deg, #1a1f4a 0%, #6B46C1 50%, #9B5DFF 100%);
            border: 1px solid rgba(155, 93, 255, 0.4);
            border-radius: 50px;
            padding: 1.125rem 2.5rem;
            color: white;
            font-weight: 700;
            font-size: 1.125rem;
            cursor: pointer;
            transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, border-color 180ms ease;
            box-shadow: 0 10px 32px rgba(107, 70, 193, 0.4),
                        0 0 0 1px rgba(155, 93, 255, 0.3),
                        0 0 24px rgba(155, 93, 255, 0.3);
            position: relative;
            overflow: visible;
            display: inline-flex;
            align-items: center;
            gap: 0.625rem;
            /* Reduced pulse for less distraction - desktop only */
            animation: cta-idle-pulse 5s ease-in-out infinite;
        }
        
        /* Stop pulse after first interaction */
        .hero-cta-primary.cta-interacted {
            animation: none;
        }

        /* Stop pulse on hover/focus */
        .hero-cta-primary:hover,
        .hero-cta-primary:focus-visible {
            animation: none;
        }

        /* Premium idle pulse keyframes - slower, more subtle */
        @keyframes cta-idle-pulse {
            0%, 100% {
                transform: scale(1) translateY(0);
                box-shadow: 0 8px 28px rgba(107, 70, 193, 0.3),
                            0 0 0 1px rgba(155, 93, 255, 0.25),
                            0 0 20px rgba(155, 93, 255, 0.25);
            }
            50% {
                transform: scale(1.005) translateY(-1px);
                box-shadow: 0 10px 32px rgba(107, 70, 193, 0.4),
                            0 0 0 1px rgba(155, 93, 255, 0.35),
                            0 0 24px rgba(155, 93, 255, 0.35);
            }
        }
        
        /* Disable pulse on mobile for performance */
        @media (max-width: 768px) {
            .hero-cta-primary {
                animation: none;
            }
        }

        /* Disable animations for reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .hero-cta-primary {
                animation: none !important;
                transform: none !important;
            }
            
            .hero-cta-primary:hover {
                transform: none !important;
            }
        }

        .hero-cta-primary::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(90deg, #1a1f4a, #6B46C1, #9B5DFF);
            border-radius: 50px;
            opacity: 0;
            filter: blur(12px);
            transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        /* Flame icon styling */
        .cta-flame-icon {
            display: inline-block;
            transition: transform 0.2s ease;
        }

        /* Premium hover state - subtle lift + glow enhancement */
        .hero-cta-primary:hover {
            transform: translateY(-3px);
            filter: brightness(1.1);
            box-shadow: 0 14px 44px rgba(107, 70, 193, 0.5),
                        0 0 0 1px rgba(155, 93, 255, 0.5),
                        0 0 32px rgba(155, 93, 255, 0.4);
            background: linear-gradient(90deg, #1f2a5a 0%, #7C3AED 50%, #A855F7 100%);
            border-color: rgba(155, 93, 255, 0.6);
        }

        .hero-cta-primary:hover .cta-flame-icon {
            animation: flame-flicker 0.6s ease-in-out infinite;
        }

        @keyframes flame-flicker {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-2px) rotate(-3deg);
            }
            50% {
                transform: translateY(-2px) rotate(3deg);
            }
            75% {
                transform: translateY(0) rotate(-2deg);
            }
        }

        /* Disable flame animation for reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .hero-cta-primary:hover .cta-flame-icon {
                animation: none !important;
                transform: none !important;
            }
            
            .hero-cta-secondary:hover .cta-arrow {
                transform: none !important;
            }
            
            .hero-cta-secondary:hover {
                transform: none !important;
            }
            
            .btn-login:hover,
            .btn-signup:hover {
                transform: none !important;
            }
        }

        .hero-cta-primary:hover::before {
            opacity: 0.6;
        }

        /* Active/Click state */
        .hero-cta-primary:active {
            transform: translate3d(0, 0, 0) scale(0.98);
            box-shadow: 0 4px 16px rgba(107, 70, 193, 0.3),
                        0 0 0 1px rgba(155, 93, 255, 0.3),
                        0 0 12px rgba(155, 93, 255, 0.25);
            transition: all 0.1s ease;
        }

        /* Focus state for keyboard users */
        .hero-cta-primary:focus-visible {
            outline: 3px solid rgba(120, 200, 255, 0.95);
            outline-offset: 3px;
            border-radius: 14px;
            transform: translate3d(0, -2px, 0) scale(1.02);
        }

        /* Secondary CTA - Subtle */
        .hero-cta-secondary {
            background: linear-gradient(90deg, #1a1f4a 0%, #3B4A6B 50%, #5B7FA8 100%);
            border: 1px solid rgba(91, 127, 168, 0.4);
            border-radius: 50px;
            padding: 0.875rem 2rem;
            color: white;
            font-weight: 600;
            font-size: 0.9375rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: visible;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 16px rgba(59, 74, 107, 0.3),
                        0 0 0 1px rgba(91, 127, 168, 0.25);
        }

        .hero-cta-secondary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, #1f2a5a 0%, #4A5B7A 50%, #6B8FA8 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 50px;
        }

        /* Arrow icon */
        .cta-arrow {
            display: inline-block;
            opacity: 0;
            transform: translateX(-8px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-cta-secondary:hover {
            border-color: rgba(91, 127, 168, 0.6);
            color: white;
            transform: translate3d(0, -2px, 0);
            box-shadow: 0 8px 24px rgba(59, 74, 107, 0.4),
                        0 0 16px rgba(91, 127, 168, 0.3);
            background: linear-gradient(90deg, #1f2a5a 0%, #4A5B7A 50%, #6B8FA8 100%);
        }

        .hero-cta-secondary:hover::before {
            opacity: 1;
        }

        .hero-cta-secondary:hover .cta-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* Active state */
        .hero-cta-secondary:active {
            transform: translate3d(0, 0, 0) scale(0.98);
            transition: all 0.1s ease;
        }

        /* Focus state for keyboard users */
        .hero-cta-secondary:focus-visible {
            outline: 3px solid rgba(120, 200, 255, 0.95);
            outline-offset: 3px;
            border-radius: 14px;
            transform: translate3d(0, -2px, 0);
        }

        .hero-micro-tagline {
            font-size: clamp(0.875rem, 1.4vw, 0.9375rem);
            color: rgba(229, 233, 255, 0.8);
            line-height: 1.5;
            margin-top: 1.5rem;
            margin-bottom: 0;
            letter-spacing: 0.02em;
            max-width: 600px;
        }

        .highlight-grok {
            color: #39F2FF;
        }

        .highlight-claude {
            color: #C78AFF;
        }

        .hero-brand-title {
            white-space: nowrap;
        }

        /* Hero Visual: Flamey Image with animations */
        .hero__visual {
            animation: flamey-float 5s cubic-bezier(0.4, 0, 0.6, 1) infinite,
                       flamey-pulse 3s ease-in-out infinite;
            position: relative;
            height: clamp(400px, 50vh, 600px);
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            will-change: transform;
            z-index: var(--z-content, 10);
        }

        /* Legacy support */
        .hero-visual {
            animation: flamey-float 5s cubic-bezier(0.4, 0, 0.6, 1) infinite,
                       flamey-pulse 3s ease-in-out infinite;
            position: relative;
            height: clamp(400px, 50vh, 600px);
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            will-change: transform;
            z-index: var(--z-content, 10);
        }

        /* Hero Support Section: Banners below fold */
        .hero-support {
            padding: var(--space-5, 32px) var(--space-3, 16px);
            max-width: var(--container, 1120px);
            margin: 0 auto var(--space-6, 48px);
        }

        .hero-support__container {
            display: flex;
            flex-direction: column;
            gap: var(--space-3, 16px);
            align-items: center;
            max-width: 680px;
            margin: 0 auto;
        }

        /* Common base style for both hero banners */
        .hero-banner {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            border-radius: 20px;
            font-size: 14.5px;
            line-height: 1.45;
            max-width: 560px;
            /* Subtle Glassmorphism - Better integration with nebula */
            background: rgba(15, 20, 32, 0.25);
            backdrop-filter: blur(16px) saturate(140%);
            -webkit-backdrop-filter: blur(16px) saturate(140%);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #E8EBFF;
            text-align: left;
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                        box-shadow 0.3s ease;
            animation: banner-pulse 4s ease-in-out infinite;
        }
        
        @keyframes banner-pulse {
            0%, 100% {
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            }
            50% {
                box-shadow: 0 4px 16px rgba(155, 93, 255, 0.2);
            }
        }
        
        .hero-banner:hover {
            transform: translateY(-2px) scale(1.02);
            animation: none;
            box-shadow: 0 6px 24px rgba(155, 93, 255, 0.3);
        }
        
        /* Dual-AI banner - larger size */
        .hero-banner.hero-banner-dual-ai {
            padding: 18px 28px;
            font-size: 16px;
            line-height: 1.5;
            max-width: 620px;
            border-radius: 24px;
            position: relative;
            overflow: visible;
        }

        /* Banner A (Dual-AI) - Reduced visual noise for better hierarchy */
        .hero-banner-dual-ai {
            margin-top: 0;
            margin-bottom: var(--space-2, 12px);
            /* Reduced opacity gradient - less visual competition */
            background: linear-gradient(
                135deg,
                rgba(57, 242, 255, 0.06) 0%,
                rgba(124, 58, 237, 0.1) 50%,
                rgba(57, 242, 255, 0.05) 100%
            );
            /* Reduced backdrop blur */
            backdrop-filter: blur(12px) saturate(120%);
            -webkit-backdrop-filter: blur(12px) saturate(120%);
            /* More subtle border */
            border: 1px solid rgba(140, 80, 255, 0.25);
            /* Reduced glow - let CTA and H1 dominate */
            box-shadow: var(--shadow-1, 0 2px 8px rgba(0, 0, 0, 0.15));
        }

        /* Banner B (Game teaser) - Reduced visual noise for better hierarchy */
        .hero-banner-game {
            margin-top: 1.75rem;
            margin-bottom: 0;
            padding: 18px 28px;
            font-size: 16px;
            line-height: 1.5;
            max-width: 620px;
            border-radius: 24px;
            /* Reduced opacity gradient - less visual competition */
            background: linear-gradient(
                135deg,
                rgba(236, 148, 72, 0.06) 0%,
                rgba(255, 168, 84, 0.1) 50%,
                rgba(124, 58, 237, 0.08) 100%
            );
            /* Reduced backdrop blur */
            backdrop-filter: blur(12px) saturate(120%);
            -webkit-backdrop-filter: blur(12px) saturate(120%);
            /* More subtle border */
            border: 1px solid rgba(255, 168, 84, 0.3);
            /* Reduced glow - let CTA and H1 dominate */
            box-shadow:
                0 4px 12px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 168, 84, 0.1);
        }

        /* Icon container styling */
        .hero-banner-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.28);
            flex-shrink: 0;
            font-size: 16px;
        }

        /* Dual-AI icon specific styling */
        .hero-banner-icon-dual-ai {
            color: #39F2FF;
            box-shadow: 0 0 8px rgba(57, 242, 255, 0.6);
        }

        /* Game teaser icon specific styling */
        .hero-banner-icon-game {
            color: #FFA854;
            box-shadow: 0 0 8px rgba(255, 168, 84, 0.7);
        }

        @media (max-width: 768px) {
            .hero-brand-title {
                white-space: normal;
            }

            .hero-banner {
                font-size: clamp(0.8125rem, 1.2vw, 0.875rem);
                padding: 10px 16px;
            }

            .hero-banner-dual-ai {
                margin-top: 12px;
                margin-bottom: 18px;
            }

            .hero-banner-game {
                margin-top: 18px;
            }
        }

        /* Override 768px styles for smaller mobile devices */
        @media (max-width: 480px) {
            .hero-banner {
                font-size: clamp(13px, 3.2vw, 15px) !important;
                padding: 14px 18px !important;
            }
        }


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

        .coming-soon-content {
            flex: 1;
        }

        .coming-soon-content strong {
            background: linear-gradient(135deg, #39F2FF 0%, #9B5DFF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            display: block;
            margin-bottom: 0.5rem;
        }

        .coming-soon-subtext {
            color: rgba(229, 233, 255, 0.7);
            font-style: italic;
        }

        @keyframes flamey-float {
            0%, 100% {
                transform: translate3d(0, 0, 0);
            }
            50% {
                transform: translate3d(0, -20px, 0);
            }
        }

        @keyframes flamey-pulse {
            0%, 100% {
                opacity: 1;
                filter: brightness(1);
            }
            50% {
                opacity: 0.95;
                filter: brightness(1.05);
            }
        }

        /* Legacy hero-visual - keep for backward compatibility */
        .hero-visual {
            animation: flamey-float 5s cubic-bezier(0.4, 0, 0.6, 1) infinite, 
                       flamey-pulse 3s ease-in-out infinite;
            position: relative;
            height: clamp(400px, 50vh, 600px);
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            will-change: transform;
            z-index: var(--z-content, 10);
        }

        .hero-flame {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(57, 242, 255, 0.5) 0%, rgba(155, 93, 255, 0.3) 30%, transparent 70%);
            border-radius: 50%;
            filter: blur(40px);
            animation: flame-pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            will-change: opacity, transform;
        }

        @keyframes flame-pulse {
            0%,
            100% {
                transform: scale(1);
                opacity: 0.6;
            }

            50% {
                opacity: 1;
                transform: scale(1.15);
                transform: scale(1.2);
                opacity: 1;
            }
        }

        .section-spacing {
            padding: 8rem 0;
        }

        .section-spacing-top {
            padding-top: 8rem;
        }

        .section-spacing-bottom {
            padding-bottom: 8rem;
        }

        /* AI Explanatory Section */
        .ai-explainer-section {
            padding: 60px 2rem;
            margin-top: 0;
            margin-bottom: 0;
        }

        .ai-explainer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .ai-explainer-title {
            font-size: clamp(1.625rem, 3.2vw, 2.5rem);
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 1.5rem;
            text-align: center;
            color: #7DD6FF;
        }

        .ai-explainer-subhead {
            font-size: clamp(1rem, 1.4vw, 1.15rem);
            font-weight: 500;
            color: rgba(229, 233, 255, 0.9);
            text-align: center;
            margin: -0.5rem 0 1.5rem;
            letter-spacing: 0.02em;
        }

        .ai-explainer-intro-wrapper {
            max-width: 780px;
            margin: 0 auto 3rem;
            line-height: 1.7;
            letter-spacing: 0.01em;
        }

        .ai-explainer-intro-wrapper .ai-explainer-intro {
            margin-bottom: 0.75rem;
        }

        .ai-explainer-intro-wrapper .ai-explainer-intro:last-child {
            margin-bottom: 0;
        }

        .ai-explainer-intro {
            font-size: clamp(16px, 1.15vw, 18px);
            line-height: 1.7;
            color: rgba(229, 233, 255, 0.85);
            margin-bottom: 3.5rem;
            max-width: 100%;
            text-align: center;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
        }

        .ai-explainer-micro-anchor {
            text-align: center;
            margin-bottom: 2rem;
        }

        .ai-explainer-dual-banner {
            max-width: 680px;
            margin: 0 auto 2rem;
        }

        .ai-explainer-micro-title {
            font-size: clamp(1rem, 1.3vw, 1.15rem);
            font-weight: 600;
            color: rgba(229, 233, 255, 0.95);
            letter-spacing: 0.05em;
            margin: 0 0 0.35rem;
            text-transform: uppercase;
        }

        .ai-explainer-micro-sub {
            font-size: clamp(0.9rem, 1.1vw, 1rem);
            color: rgba(229, 233, 255, 0.75);
            margin: 0;
            letter-spacing: 0.02em;
        }

        .ai-explainer-blocks {
            display: flex;
            flex-direction: row;
            gap: 1.5rem;
            max-width: 100%;
            width: 100%;
        }

        .ai-explainer-block {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 22px 24px;
            border-radius: 14px;
            /* Reduced Glassmorphism for less noise */
            background: rgba(15, 20, 32, 0.3);
            backdrop-filter: blur(16px) saturate(150%);
            -webkit-backdrop-filter: blur(16px) saturate(150%);
            border: 1px solid rgba(255, 255, 255, 0.12);
            flex: 1;
            min-width: 0;
            position: relative;
            overflow: visible;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                        box-shadow 0.4s ease,
                        border-color 0.4s ease;
            animation: block-float 5s ease-in-out infinite;
        }
        
        @keyframes block-float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-3px);
            }
        }
        
        .ai-explainer-block:hover {
            transform: translateY(-6px) scale(1.02);
            animation: none;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                        0 0 0 1px rgba(155, 93, 255, 0.3);
            border-color: rgba(155, 93, 255, 0.4);
        }

        .ai-explainer-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.35);
            flex-shrink: 0;
            font-size: 20px;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                        box-shadow 0.4s ease;
            animation: icon-glow 3s ease-in-out infinite;
        }
        
        @keyframes icon-glow {
            0%, 100% {
                box-shadow: inherit;
            }
            50% {
                box-shadow: 0 0 16px currentColor, 0 0 24px currentColor;
            }
        }
        
        .ai-explainer-block:hover .ai-explainer-icon {
            transform: scale(1.2) rotate(5deg);
            animation: icon-spin 0.6s ease-in-out;
        }
        
        @keyframes icon-spin {
            0% {
                transform: scale(1.2) rotate(5deg);
            }
            50% {
                transform: scale(1.3) rotate(180deg);
            }
            100% {
                transform: scale(1.2) rotate(365deg);
            }
        }

        .ai-explainer-icon-grok {
            color: #39F2FF;
            box-shadow: 0 0 8px rgba(57, 242, 255, 0.4);
        }

        .ai-explainer-icon-claude {
            color: #C78AFF;
            box-shadow: 0 0 8px rgba(199, 138, 255, 0.4);
        }

        .ai-explainer-content {
            flex: 1;
        }

        .ai-explainer-subtitle {
            font-size: clamp(0.9375rem, 1.5vw, 1rem);
            font-weight: 600;
            color: #E8EBFF;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .ai-explainer-block-grok {
            /* Outer Neon Gradient Glow for Grok */
            box-shadow: 
                0 0 20px rgba(57, 242, 255, 0.4),
                0 0 40px rgba(57, 242, 255, 0.3),
                0 0 60px rgba(57, 242, 255, 0.2),
                0 0 80px rgba(57, 242, 255, 0.15),
                inset 0 0 20px rgba(57, 242, 255, 0.1);
        }

        .ai-explainer-block-claude {
            /* Outer Neon Gradient Glow for Claude */
            box-shadow: 
                0 0 20px rgba(199, 138, 255, 0.5),
                0 0 40px rgba(155, 93, 255, 0.4),
                0 0 60px rgba(199, 138, 255, 0.3),
                0 0 80px rgba(155, 93, 255, 0.2),
                inset 0 0 20px rgba(199, 138, 255, 0.1);
        }

        .ai-explainer-block-grok .ai-explainer-subtitle {
            color: #39F2FF;
        }

        .ai-explainer-block-claude .ai-explainer-subtitle {
            color: #C78AFF;
        }

        .ai-explainer-body {
            font-size: clamp(15.5px, 1.05vw, 17px);
            line-height: 1.65;
            color: rgba(229, 233, 255, 0.85);
            margin-bottom: 0.75rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
        }

        .ai-explainer-role {
            font-size: clamp(15.5px, 1.05vw, 17px);
            line-height: 1.6;
            color: rgba(229, 233, 255, 0.85);
            font-style: italic;
            margin: 1rem 0 0;
            opacity: 0.85;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
        }

        @media (max-width: 1024px) {
            .ai-explainer-section {
                padding: 50px 2rem;
            }
        }

        @media (max-width: 768px) {
            .ai-explainer-section {
                padding: 50px 1.5rem;
            }

            .ai-explainer-blocks {
                flex-direction: column;
                gap: 1rem;
            }

            .ai-explainer-block {
                padding: 14px 18px;
            }
        }

        .features-section {
            padding: 60px 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            /* Fix stacking context to prevent text duplication */
            isolation: isolate;
        }
        
        /* Reduced parallax background for features section */
        .features-section {
            --parallax-y: 0px;
        }
        
        .features-section::after {
            content: '';
            position: absolute;
            top: -5%;
            left: -5%;
            right: -5%;
            bottom: -5%;
            background: radial-gradient(circle at 50% 50%, rgba(95, 183, 255, 0.03) 0%, transparent 70%);
            filter: blur(60px);
            z-index: -1;
            pointer-events: none;
            will-change: transform;
            transform: translateY(var(--parallax-y, 0px));
        }
        
        @media (prefers-reduced-motion: reduce) {
            .features-section::after {
                transform: none !important;
            }
        }

        /* Gaming / Gamification Section (Locked) */
        .gaming-section {
            padding: 60px 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            isolation: isolate;
        }

        .gaming-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .gaming-header {
            margin-bottom: 2rem;
        }

        .gaming-title-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .gaming-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin: 0;
            /* Optimized text-shadow for glow */
            text-shadow: 0 0 8px rgba(168, 229, 255, 0.4), 0 2px 8px rgba(0, 0, 0, 0.4);
            position: relative;
            z-index: 1;
        }

        .gaming-lock-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(155, 93, 255, 0.2);
            border: 1px solid rgba(155, 93, 255, 0.5);
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            color: rgba(229, 233, 255, 0.95);
            box-shadow: 0 0 12px rgba(155, 93, 255, 0.3);
        }
        
        .gaming-description {
            font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
            color: rgba(229, 233, 255, 0.8);
            line-height: 1.65;
            max-width: 70ch;
            margin: 0 auto;
            font-weight: 300;
            /* Reduced text-shadow */
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
            position: relative;
            z-index: 1;
        }

        .gaming-lock-badge i {
            font-size: 0.75rem;
            opacity: 0.8;
        }

        .gaming-features-preview {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 3rem 0;
            padding: 2rem;
            /* Enhanced Glassmorphism */
            background: rgba(15, 20, 32, 0.4);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 24px;
            /* Outer Neon Gradient Glow */
            box-shadow: 
                0 0 20px rgba(255, 168, 84, 0.4),
                0 0 40px rgba(155, 93, 255, 0.3),
                0 0 60px rgba(255, 168, 84, 0.2),
                0 0 80px rgba(155, 93, 255, 0.15),
                0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 0 20px rgba(255, 168, 84, 0.1);
            position: relative;
            overflow: visible;
        }

        .gaming-feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .gaming-feature-item:hover {
            opacity: 1;
        }

        .gaming-feature-icon {
            font-size: 2.5rem;
            filter: grayscale(0.3);
        }

        .gaming-feature-item span {
            font-size: 0.9375rem;
            font-weight: 500;
            color: rgba(229, 233, 255, 0.85);
        }

        .gaming-cta-disabled {
            background: rgba(155, 93, 255, 0.15);
            border: 2px solid rgba(155, 93, 255, 0.4);
            border-radius: 50px;
            padding: 0.875rem 2rem;
            color: rgba(229, 233, 255, 0.65);
            font-weight: 600;
            font-size: 1rem;
            cursor: not-allowed;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            opacity: 0.8;
            margin-top: 1rem;
        }

        .gaming-cta-disabled:hover {
            opacity: 0.9;
            border-color: rgba(155, 93, 255, 0.5);
            background: rgba(155, 93, 255, 0.2);
        }

        .gaming-cta-disabled i {
            font-size: 0.875rem;
        }

        @media (max-width: 1024px) {
            .gaming-section {
                padding: 50px 2rem;
            }
        }

        @media (max-width: 768px) {
            .gaming-section {
                padding: 50px 1.5rem;
            }

            .gaming-title-wrapper {
                flex-direction: column;
                gap: 1rem;
            }

            .gaming-features-preview {
                gap: 1.5rem;
                padding: 1.5rem;
            }

            .gaming-feature-icon {
                font-size: 2rem;
            }
        }

        .features-header {
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
        }

        .features-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(95, 183, 255, 0.15) 0%, transparent 70%);
            filter: blur(35px);
            opacity: 0.15;
            z-index: -1;
        }

        .features-title {
            font-size: clamp(1.96rem, 3.92vw, 3.08rem);
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            /* Optimized single text-shadow for glow */
            text-shadow: 0 0 8px rgba(100, 150, 255, 0.4), 0 2px 8px rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            position: relative;
            z-index: 1;
        }

        .features-title .title-icon {
            font-size: 0.9em;
        }

        .features-title .title-text {
            background: linear-gradient(90deg, #5FB7FF 0%, #A678FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .features-subtitle {
            font-size: clamp(0.9375rem, 1.75vw, 1.125rem);
            color: rgba(229, 233, 255, 0.8);
            max-width: 620px;
            margin: 0 auto 40px;
            text-align: center;
            line-height: 1.65;
            font-weight: 300;
            /* Reduced text-shadow */
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
            position: relative;
            z-index: 1;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            position: relative;
            padding: 2rem 0;
        }
        
        /* Subtle background glow effect behind feature cards */
        .features-grid::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -5%;
            right: -5%;
            bottom: -10%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(57, 242, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(155, 93, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(95, 183, 255, 0.05) 0%, transparent 60%);
            filter: blur(60px);
            z-index: -1;
            pointer-events: none;
            animation: features-glow-pulse 6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            opacity: 0.6;
            will-change: opacity, transform;
        }
        
        @keyframes features-glow-pulse {
            0%, 100% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.03);
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            .features-grid::before {
                animation: none;
                opacity: 0.5;
            }
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(26, 15, 65, 0.3) 0%, rgba(40, 20, 70, 0.3) 100%);
            border: 1px solid rgba(155, 93, 255, 0.25);
            border-radius: 18px;
            padding: 2.5rem;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                        box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                        border-color 0.4s ease;
            /* Enhanced box-shadow for more depth */
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(155, 93, 255, 0.15);
            position: relative;
            overflow: visible;
            /* Fix stacking context - text content above blur layer */
            isolation: isolate;
            animation: card-float 6s ease-in-out infinite;
        }
        
        @keyframes card-float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-2px);
            }
        }
        
        /* Move blur to dedicated pseudo-element behind text */
        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 18px;
            /* Reduced Glassmorphism - less visual noise */
            backdrop-filter: blur(16px) saturate(150%);
            -webkit-backdrop-filter: blur(16px) saturate(150%);
            z-index: -1;
            pointer-events: none;
        }
        
        /* Individual subtle glow behind each card - decorative only, no text */
        .feature-card::after {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: radial-gradient(circle at center, rgba(57, 242, 255, 0.06) 0%, transparent 70%);
            filter: blur(30px);
            z-index: -2;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .feature-card:hover::after {
            opacity: 0.5;
        }
        
        .feature-card:hover {
            transform: translateY(-8px) scale(1.03);
            animation: none;
            /* Enhanced hover glow */
            box-shadow: 
                0 12px 48px rgba(155, 93, 255, 0.5),
                0 0 0 1px rgba(155, 93, 255, 0.4),
                0 0 40px rgba(57, 242, 255, 0.3);
            border-color: rgba(155, 93, 255, 0.7);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(57, 242, 255, 0.2) 0%, rgba(155, 93, 255, 0.2) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                        background 0.4s ease,
                        box-shadow 0.4s ease;
            box-shadow: 0 4px 12px rgba(57, 242, 255, 0.2);
            animation: icon-pulse 3s ease-in-out infinite;
        }
        
        @keyframes icon-pulse {
            0%, 100% {
                box-shadow: 0 4px 12px rgba(57, 242, 255, 0.2);
            }
            50% {
                box-shadow: 0 4px 20px rgba(57, 242, 255, 0.4), 0 0 16px rgba(155, 93, 255, 0.3);
            }
        }
        
        /* Subtle micro-movement for feature icons (Flamey-like) */
        @keyframes feature-icon-float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-3px) rotate(1deg);
            }
        }
        
        .feature-card:hover .feature-icon {
            animation: feature-icon-float 2s ease-in-out infinite, icon-pulse 1.5s ease-in-out infinite;
            background: linear-gradient(135deg, rgba(57, 242, 255, 0.35) 0%, rgba(155, 93, 255, 0.35) 100%);
            transform: scale(1.1);
        }

        .feature-icon svg {
            width: 32px;
            height: 32px;
            color: #39F2FF;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover .feature-icon svg {
            transform: scale(1.1);
        }
        
        @media (prefers-reduced-motion: reduce) {
            .feature-card:hover .feature-icon {
                animation: none;
            }
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
            position: relative;
            z-index: 1;
            /* Optimized single text-shadow */
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease, color 0.3s ease;
        }
        
        .feature-card:hover .feature-title {
            transform: translateX(4px);
            color: #7DD6FF;
        }

        .feature-description {
            font-size: clamp(15.5px, 1.05vw, 17px);
            color: rgba(229, 233, 255, 0.85);
            line-height: 1.6;
            /* Optimized single text-shadow */
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
            max-width: 60ch;
        }

        .career-transition-section {
            position: relative;
            padding: 60px 2rem;
            background: linear-gradient(180deg, transparent 0%, rgba(107, 60, 255, 0.05) 50%, transparent 100%);
        }

        .ar-vr-lab-section {
            padding: 60px 2rem;
            background: linear-gradient(180deg,
                    rgba(8, 17, 58, 0.3) 0%,
                    rgba(107, 60, 255, 0.12) 40%,
                    rgba(57, 242, 255, 0.08) 70%,
                    rgba(8, 17, 58, 0) 100%);
            /* Fix stacking context to prevent text duplication */
            isolation: isolate;
            position: relative;
        }

        .ar-vr-lab-container {
            max-width: 960px;
            margin: 0 auto;
            padding: 2.75rem 2.5rem;
            border-radius: 24px;
            background: radial-gradient(circle at 0% 0%,
                    rgba(57, 242, 255, 0.15),
                    transparent 55%),
                radial-gradient(circle at 100% 100%,
                    rgba(155, 93, 255, 0.18),
                    transparent 60%),
                rgba(15, 20, 32, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.15);
            /* Reduced box-shadow */
            box-shadow:
                0 8px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(57, 242, 255, 0.2);
            text-align: center;
            position: relative;
            overflow: visible;
            /* Fix stacking context - text content above blur layer */
            isolation: isolate;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            animation: container-glow 5s ease-in-out infinite;
        }
        
        @keyframes container-glow {
            0%, 100% {
                box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4),
                            0 0 0 1px rgba(57, 242, 255, 0.2);
            }
            50% {
                box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4),
                            0 0 0 1px rgba(57, 242, 255, 0.3),
                            0 0 30px rgba(57, 242, 255, 0.2);
            }
        }
        
        .ar-vr-lab-container:hover {
            transform: translateY(-4px);
            animation: none;
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5),
                        0 0 0 1px rgba(57, 242, 255, 0.4),
                        0 0 40px rgba(57, 242, 255, 0.3);
        }
        
        /* Move blur to dedicated pseudo-element behind text */
        .ar-vr-lab-container::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            /* Enhanced Glassmorphism - blur only on background layer */
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            z-index: -1;
            pointer-events: none;
        }

        .ar-vr-lab-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.4rem 1.1rem;
            border-radius: 999px;
            font-size: 0.875rem;
            letter-spacing: normal;
            text-transform: none;
            background: linear-gradient(120deg, #39F2FF, #9B5DFF);
            color: #050817;
            box-shadow:
                0 0 0 1px rgba(0, 0, 0, 0.55),
                0 0 20px rgba(57, 242, 255, 0.65);
            margin-bottom: 1.5rem;
        }

        .ar-vr-lab-title {
            font-size: clamp(1.75rem, 3.2vw, 2.5rem);
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 1.25rem;
            background: linear-gradient(120deg, #FFFFFF, #BBD9FF);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            /* Reduced text-shadow */
            text-shadow: 0 0 6px rgba(187, 217, 255, 0.25), 0 2px 8px rgba(0, 0, 0, 0.4);
            position: relative;
            z-index: 1;
        }

        .ar-vr-lab-subtitle {
            font-size: clamp(0.975rem, 1.8vw, 1.2rem);
            line-height: 1.6;
            color: rgba(229, 233, 255, 0.95);
            max-width: 60ch;
            margin: 0 auto 2rem auto;
            /* Optimized single text-shadow */
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
            position: relative;
            z-index: 1;
        }

        .ar-vr-lab-list {
            list-style: none;
            padding: 0;
            margin: 0 0 1.75rem 0;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            max-width: 46rem;
            margin-left: auto;
            margin-right: auto;
            text-align: left;
        }

        .ar-vr-lab-list li {
            font-size: clamp(0.9375rem, 1.65vw, 1.0625rem);
            line-height: 1.7;
            color: rgba(229, 233, 255, 0.92);
        }

        .ar-vr-lab-note {
            font-size: 0.9rem;
            line-height: 1.6;
            color: rgba(200, 210, 255, 0.9);
            margin: 0;
            opacity: 0.9;
        }

        .career-transition-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .career-transition-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .career-transition-title {
            font-size: clamp(1.75rem, 3.5vw, 3rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .career-transition-subtitle {
            font-size: clamp(0.9375rem, 1.75vw, 1.25rem);
            color: rgba(229, 233, 255, 0.8);
            line-height: 1.75;
            max-width: 62ch;
            margin: 0 auto;
            font-weight: 300;
        }

        .career-transition-animation-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 800px;
            min-width: 720px;
            width: 100%;
            margin: 0 auto;
        }

        .career-tools-section {
            padding: 60px 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .career-tools-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .career-tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.75rem;
        }

        .career-tool-card {
            background: linear-gradient(135deg, rgba(26, 15, 65, 0.35) 0%, rgba(40, 20, 70, 0.35) 100%);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(155, 93, 255, 0.25);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(155, 93, 255, 0.15);
            animation: tool-card-float 6s ease-in-out infinite;
        }
        
        @keyframes tool-card-float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-2px);
            }
        }

        .career-tool-card::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 26px;
            background: linear-gradient(135deg, 
                rgba(57, 242, 255, 0.8) 0%, 
                rgba(155, 93, 255, 0.8) 50%,
                rgba(57, 242, 255, 0.8) 100%);
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            padding: 2px;
            opacity: 0.6;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: -1;
        }

        .career-tool-card:hover {
            transform: translateY(-8px) scale(1.02);
            animation: none;
            box-shadow: 
                0 12px 48px rgba(155, 93, 255, 0.5),
                0 0 0 1px rgba(155, 93, 255, 0.4),
                0 0 40px rgba(57, 242, 255, 0.3);
            border-color: rgba(155, 93, 255, 0.6);
        }

        .career-tool-card:hover::before {
            opacity: 1;
            background: linear-gradient(135deg, 
                rgba(57, 242, 255, 1) 0%, 
                rgba(155, 93, 255, 1) 50%,
                rgba(57, 242, 255, 1) 100%);
        }

        .career-tool-icon {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: tool-icon-rotate 8s ease-in-out infinite;
        }
        
        @keyframes tool-icon-rotate {
            0%, 100% {
                transform: rotate(0deg) scale(1);
            }
            25% {
                transform: rotate(2deg) scale(1.05);
            }
            50% {
                transform: rotate(0deg) scale(1);
            }
            75% {
                transform: rotate(-2deg) scale(1.05);
            }
        }
        
        .career-tool-card:hover .career-tool-icon {
            animation: tool-icon-bounce 0.6s ease-in-out;
            transform: scale(1.15) rotate(5deg);
        }
        
        @keyframes tool-icon-bounce {
            0%, 100% {
                transform: scale(1.15) rotate(5deg);
            }
            50% {
                transform: scale(1.2) rotate(8deg);
            }
        }

        .career-tool-icon-1 {
            background: linear-gradient(135deg, rgba(57, 242, 255, 0.25) 0%, rgba(155, 93, 255, 0.15) 100%);
        }

        .career-tool-icon-2 {
            background: linear-gradient(135deg, rgba(155, 93, 255, 0.25) 0%, rgba(57, 242, 255, 0.15) 100%);
        }

        .career-tool-icon-3 {
            background: linear-gradient(135deg, rgba(57, 242, 255, 0.25) 0%, rgba(155, 93, 255, 0.15) 100%);
        }

        /* Career tool card - locked / coming soon */
        .career-tool-card-locked {
            opacity: 0.75;
            cursor: not-allowed;
        }

        .career-tool-card-locked:hover {
            transform: translateY(0) scale(1);
            animation: tool-card-float 6s ease-in-out infinite;
        }

        .career-tool-card-locked:hover::before {
            opacity: 0.6;
        }

        .career-tool-locked-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.85rem;
            background: rgba(15, 12, 28, 0.9);
            border: 1px solid rgba(155, 93, 255, 0.5);
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(155, 93, 255, 0.95);
            z-index: 5;
        }

        .career-tool-locked-badge i {
            font-size: 0.8rem;
        }

        /* CTA button - locked */
        .career-tools-cta-locked {
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            cursor: not-allowed;
            opacity: 0.7;
            pointer-events: none;
        }

        .career-tools-cta-locked:hover {
            transform: none;
        }

        .career-tool-icon svg {
            width: 36px;
            height: 36px;
        }

        .career-tool-icon-1 svg {
            color: #39F2FF;
        }

        .career-tool-icon-2 svg {
            color: #9B5DFF;
        }

        .career-tool-icon-3 svg {
            color: #39F2FF;
        }

        .career-tool-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .career-tool-desc {
            color: rgba(229, 233, 255, 0.78);
            line-height: 1.7;
            font-weight: 300;
        }

        .career-tools-cta-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        .career-tools-cta-button {
            background: linear-gradient(135deg, #39F2FF 0%, #9B5DFF 100%);
            border: none;
            border-radius: 50px;
            padding: 0.875rem 2rem;
            color: white;
            font-weight: 700;
            font-size: 1.0625rem;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 28px rgba(57, 242, 255, 0.4),
                        0 0 0 1px rgba(57, 242, 255, 0.2),
                        0 0 20px rgba(155, 93, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .career-tools-cta-button::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #39F2FF, #9B5DFF);
            border-radius: 50px;
            opacity: 0;
            filter: blur(12px);
            transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .career-tools-cta-button:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 16px 48px rgba(57, 242, 255, 0.5),
                        0 0 0 1px rgba(57, 242, 255, 0.3),
                        0 0 30px rgba(155, 93, 255, 0.4);
        }

        .career-tools-cta-button:hover::before {
            opacity: 0.6;
        }

        .career-tools-cta-button:focus-visible {
            outline: 3px solid rgba(120, 200, 255, 0.95);
            outline-offset: 3px;
            border-radius: 14px;
        }

        .final-cta-section {
            padding: 60px 2rem;
            text-align: center;
            background: linear-gradient(180deg, transparent 0%, rgba(107, 60, 255, 0.04) 50%, transparent 100%);
            /* Fix stacking context to prevent text duplication */
            isolation: isolate;
            position: relative;
        }

        .final-cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .final-cta-title {
            font-size: clamp(1.75rem, 3.5vw, 2.75rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            white-space: normal;
            overflow-wrap: break-word;
            word-break: break-word;
            /* Optimized text-shadow for glow */
            text-shadow: 0 0 8px rgba(168, 229, 255, 0.4), 0 2px 10px rgba(0, 0, 0, 0.45);
            position: relative;
            z-index: 1;
        }

        .final-cta-button {
            background: linear-gradient(135deg, #39F2FF 0%, #9B5DFF 100%);
            border: none;
            border-radius: 50px;
            padding: 1rem 2.25rem;
            color: white;
            font-weight: 700;
            font-size: 1.125rem;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 28px rgba(57, 242, 255, 0.4),
                        0 0 0 1px rgba(57, 242, 255, 0.2),
                        0 0 20px rgba(155, 93, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .final-cta-button::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #39F2FF, #9B5DFF);
            border-radius: 50px;
            opacity: 0;
            filter: blur(12px);
            transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .final-cta-button:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 16px 48px rgba(57, 242, 255, 0.5),
                        0 0 0 1px rgba(57, 242, 255, 0.3),
                        0 0 30px rgba(155, 93, 255, 0.4);
        }

        .final-cta-button:hover::before {
            opacity: 0.6;
        }

        .final-cta-button:focus-visible {
            outline: 3px solid rgba(120, 200, 255, 0.95);
            outline-offset: 3px;
            border-radius: 14px;
        }


        .career-animation-container {
            position: relative;
            padding: 3rem;
            width: 100%;
            min-width: 100%;
            border-radius: 28px;
            background: linear-gradient(135deg, rgba(26, 15, 65, 0.5) 0%, rgba(40, 20, 70, 0.5) 100%);
            backdrop-filter: blur(50px);
            border: 1px solid rgba(155, 93, 255, 0.25);
            box-shadow: 0 8px 32px rgba(100, 60, 200, 0.25);
        }

        .career-label {
            font-size: 0.9375rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: rgba(229, 233, 255, 0.6);
        }

        .career-label-to {
            color: #39F2FF;
        }

        .career-box {
            padding: 1.5rem 2rem;
            min-width: 260px;
            border-radius: 20px;
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 2.5rem;
            transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        min-width 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .career-from.animating .career-box,
        .career-to.animating .career-box {
            opacity: 0;
            transform: translateX(-12px);
        }

        .career-box-from {
            background: linear-gradient(90deg, rgba(42, 24, 80, 0.7) 0%, rgba(26, 15, 65, 0.7) 100%);
            border: 2px solid rgba(155, 93, 255, 0.35);
            color: white;
        }

        .career-box-to {
            background: linear-gradient(90deg, rgba(57, 242, 255, 0.15) 0%, rgba(155, 93, 255, 0.15) 100%);
            border: 2px solid rgba(57, 242, 255, 0.4);
            box-shadow: 0 0 40px rgba(57, 242, 255, 0.35);
            background-image: linear-gradient(135deg, #39F2FF 0%, #66CCFF 40%, #9B5DFF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .career-arrow-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2.5rem 0;
            height: 80px;
        }

        .career-arrow {
            width: 64px;
            height: 64px;
            color: #39F2FF;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s ease;
            filter: drop-shadow(0 0 12px rgba(57, 242, 255, 0.6));
        }

        .career-arrow.animating {
            transform: scale(1.6) rotate(180deg);
        }

        .career-arrow-glow {
            position: absolute;
            width: 140px;
            height: 140px;
            background: radial-gradient(circle, rgba(57, 242, 255, 0.6) 0%, transparent 70%);
            filter: blur(40px);
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .career-arrow-glow.animating {
            transform: scale(1.8);
        }

        /* Footer styles - left aligned like sign-up.html */
        .main-footer .footer-content-wrapper {
            max-width: 100%;
            width: 100%;
            margin: 0;
            padding-left: 2rem;
            padding-right: 120px; /* Extra padding to avoid chatbot overlap */
        }

        /* Ensure footer-right stays on the right and doesn't overlap with chatbot */
        .main-footer .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 2rem;
        }

        .main-footer .footer-right {
            flex-shrink: 0;
            margin-left: auto;
        }

        .main-footer .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .main-footer .socials {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        @media (max-width: 900px) {
            .main-footer .footer-content-wrapper {
                padding: 20px 15px;
            }

            .main-footer .footer-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
            }

            .main-footer .footer-left {
                max-width: 100%;
                text-align: left;
            }

            .main-footer .footer-links {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
                line-height: 1.5;
            }

            .main-footer .footer-right {
                align-self: flex-start;
            }

            .main-footer .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                padding-top: 20px;
            }

            .main-footer .socials {
                justify-content: flex-start;
            }
        }

        @media (max-width: 900px) {
            .hero__container {
                grid-template-columns: 1fr;
                row-gap: 28px;
                text-align: center;
            }

            .hero__copy {
                max-width: 100%;
            }

            .hero__visual {
                order: 1;
                justify-self: center;
                height: clamp(250px, 35vh, 400px);
            }

            .hero-subtitle {
                margin: 0 auto;
            }

            .hero-cta-wrapper {
                justify-content: center;
                flex-direction: column;
                align-self: center;
            }

            .hero-cta-primary,
            .hero-cta-secondary {
                width: 100%;
                max-width: 320px;
                justify-content: center;
            }

            /* Legacy support */
            .hero-section {
                padding: 80px 2rem;
            }

            .hero-content {
                max-width: 100%;
            }

            p.hero-description {
                margin: 0 auto 2.5rem;
            }
        }

        /* ============================================
           MOBILE OPTIMIZATION (360-480px)
           ============================================ */
        
        @media (max-width: 480px) {
            /* Hero Layout - Stack vertically, reduce padding */
            .hero-section {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 60px 20px 40px;
                min-height: auto;
                text-align: left;
            }

            .hero-content {
                max-width: 100%;
                padding: 0;
            }

            /* Typography - Mobile-optimized with clamp() */
            .hero-title {
                font-size: clamp(32px, 7vw, 44px);
                line-height: 1.1;
                margin-bottom: 0;
            }

            .tagline {
                font-size: clamp(12px, 3vw, 15px);
                line-height: 1.4;
                margin-top: 12px;
                margin-bottom: 16px;
            }

            .hero-subtitle {
                font-size: clamp(13px, 3.2vw, 16px);
                line-height: 1.65;
                margin-top: 18px;
                margin-bottom: 0;
                max-width: 100%;
            }

            /* Hero badges - Mobile optimized */
            .hero-badges {
                gap: 0.75rem !important;
                margin: 1rem 0 1.5rem 0 !important;
                font-size: 0.85rem !important;
            }

            .hero-badge {
                font-size: 0.85rem !important;
            }

            /* CTA subtitle - Mobile */
            .cta-subtitle {
                font-size: 0.75rem !important;
                margin-top: 0.5rem !important;
            }

            /* Ensure H1 max 2 lines on mobile */
            .hero-title .hero-title-main {
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                line-height: 1.1;
            }

            /* Spacing - Reduced gaps for mobile */
            .hero-title + .tagline {
                margin-top: 10px;
            }

            .tagline + .hero-subtitle {
                margin-top: 14px;
            }

            /* Banners now in hero-support section, not after subtitle */

            /* Hero Banners - Mobile optimized */
            .hero-banner {
                padding: 14px 18px !important;
                max-width: 100% !important;
                font-size: clamp(13px, 3.2vw, 15px) !important;
            }

            .hero-banner-dual-ai {
                margin-top: 0;
                margin-bottom: var(--space-2, 12px);
            }

            .hero-banner-dual-ai > div > div:first-child {
                font-size: 32px !important;
            }

            .hero-banner-dual-ai span[style*="font-size:24px"] {
                font-size: clamp(16px, 4vw, 18px) !important;
            }

            .hero-banner-dual-ai span[style*="font-size:19px"] {
                font-size: clamp(13px, 3.2vw, 15px) !important;
            }

            .hero-banner-game {
                margin-top: 12px;
                margin-bottom: 0;
            }

            .hero-banner-game > div > div:first-child {
                font-size: 32px !important;
            }

            .hero-banner-game span[style*="font-size:24px"] {
                font-size: clamp(16px, 4vw, 18px) !important;
            }

            .hero-banner-game span[style*="font-size:19px"] {
                font-size: clamp(13px, 3.2vw, 15px) !important;
            }

            /* CTA Wrapper - Mobile optimized */
            .hero-cta-wrapper {
                margin-top: var(--space-5, 32px);
                margin-bottom: 0;
                gap: var(--space-2, 12px);
                flex-direction: column;
            }

            /* Primary CTA - Must be visible and tappable (above fold or barely scroll) */
            .hero-cta-primary {
                min-height: 52px;
                padding: 14px var(--space-4, 24px);
                font-size: clamp(16px, 4vw, 18px);
                width: 100%;
                max-width: 320px;
                justify-content: center;
                /* Ensure CTA is above fold and visible */
                margin-top: 0;
            }
            
            /* Reduce hero-bg gradient animation intensity on mobile */
            .hero-bg {
                background-size: 200% 200%;
            }

            /* Secondary CTA - Mobile optimized */
            .hero-cta-secondary {
                min-height: 44px;
                padding: 12px 20px;
                font-size: clamp(15px, 3.8vw, 16px);
                width: 100%;
                max-width: 320px;
                justify-content: center;
            }

            /* Hero Visual - Reduce size on mobile */
            .hero-visual {
                height: clamp(250px, 35vh, 350px);
                min-height: 250px;
            }
        }

        /* ============================================
           SMALL MOBILE (360px)
           ============================================ */
        
        @media (max-width: 360px) {
            .hero-section {
                padding: 50px 16px 30px;
            }

            .hero-title {
                font-size: clamp(28px, 6.5vw, 36px);
            }

            .tagline {
                font-size: clamp(11px, 2.8vw, 14px);
                margin-top: 10px;
                margin-bottom: 14px;
            }

            .hero-subtitle {
                font-size: clamp(12px, 3.2vw, 15px);
                margin-top: 16px;
            }

            .hero-cta-wrapper {
                margin-top: 24px;
            }

            .hero-cta-primary {
                min-height: 48px;
                padding: 13px 20px;
                font-size: 15px;
            }

            .hero-cta-primary,
            .hero-cta-secondary {
                padding: 12px 18px;
                font-size: 14px;
            }
        }

        /* ============================================
           TABLET PORTRAIT (768px)
           ============================================ */
        
        @media (max-width: 768px) and (min-width: 481px) {
            .hero-section {
                padding: 70px 24px 50px;
            }

            .hero-title {
                font-size: clamp(32px, 5.5vw, 38px);
            }

            .tagline {
                font-size: clamp(14px, 3.2vw, 17px);
                margin-top: 12px;
                margin-bottom: 16px;
            }

            .hero-subtitle {
                font-size: clamp(15px, 3.5vw, 17px);
                margin-top: 16px;
            }

            .hero-cta-wrapper {
                margin-top: 28px;
            }

            .hero-cta-primary {
                min-height: 48px;
                padding: 14px 24px;
                font-size: clamp(16px, 3.5vw, 17px);
            }

            .hero-cta-primary,
            .hero-cta-secondary {
                max-width: 340px;
            }
        }

        /* ============================================
           DESKTOP LARGE (1280px+)
           ============================================ */
        
        @media (min-width: 1280px) {
            .hero__container {
                max-width: 1200px;
                gap: var(--space-6, 48px);
            }

            .hero__copy {
                max-width: 600px;
            }

            .hero-title {
                font-size: clamp(3.5rem, 6.5vw, 5rem);
            }

            .hero-cta-primary {
                padding: 1.25rem 2.75rem;
                font-size: 1.1875rem;
            }

            .hero-cta-wrapper {
                margin-top: var(--space-6, 48px);
            }

            .hero__visual {
                height: clamp(400px, 45vh, 550px);
            }
        }

            .career-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .features-section,
            .career-transition-section,
            .ar-vr-lab-section,
            .career-tools-section,
            .final-cta-section,
            .gaming-section {
                padding: 50px 2rem;
            }
        

        @media (max-width: 768px) {
            .main-header {
                padding: 1rem;
            }

            .main-header .header-actions {
                gap: 0.5rem;
            }

            .btn-login,
            .btn-signup,
            .main-header .lang-switcher {
                padding: 0.5rem 1rem;
                font-size: 0.875rem;
            }

            .hero-section {
                padding: var(--space-5, 32px) var(--space-3, 16px);
            }

            .hero__container {
                grid-template-columns: 1fr;
                gap: var(--space-4, 24px);
            }

            .hero__visual {
                order: -1;
                height: clamp(250px, 35vh, 400px);
                min-height: 250px;
            }
            
            /* Adjust lens position on mobile */
            .lens {
                left: 50%;
                top: 50%;
                width: min(600px, 150vw);
                height: min(600px, 150vw);
            }

            /* Legacy support */
            .hero-visual {
                height: clamp(250px, 35vh, 400px);
                min-height: 250px;
            }

            .features-section,
            .career-transition-section,
            .ar-vr-lab-section,
            .career-tools-section,
            .final-cta-section,
            .gaming-section {
                padding: 50px 1.5rem;
            }

            .career-animation-container {
                padding: 2rem;
            }

            .career-transition-animation-wrapper {
                min-width: 0;
            }

            .career-box {
                min-width: 0;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer {
                margin-top: 4rem;
            }
        }

        @keyframes fade-in {
            from {
                opacity: 0;
                transform: translate3d(0, 20px, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        .fade-in {
            animation: fade-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            will-change: opacity, transform;
        }
        
        /* Ensure hero fade-in doesn't cause visual duplication */
        .hero-section.fade-in {
            animation: fade-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            will-change: opacity, transform;
        }

        .fade-in-down {
            animation: fade-in 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: opacity, transform;
        }

        /* Scroll-triggered animations - Enhanced with GPU acceleration */
        .fade-in-up {
            opacity: 0;
            transform: translate3d(0, 40px, 0);
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: opacity, transform;
        }

        .fade-in-up.animate {
            opacity: 1;
            transform: translate3d(0, 0, 0);
            will-change: auto;
            animation: fade-in-bounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }
        
        @keyframes fade-in-bounce {
            0% {
                opacity: 0;
                transform: translate3d(0, 40px, 0) scale(0.95);
            }
            60% {
                transform: translate3d(0, -5px, 0) scale(1.02);
            }
            100% {
                opacity: 1;
                transform: translate3d(0, 0, 0) scale(1);
            }
        }

        .fade-in-up-delay-1 {
            transition-delay: 0.1s;
        }

        .fade-in-up-delay-2 {
            transition-delay: 0.2s;
        }

        .fade-in-up-delay-3 {
            transition-delay: 0.3s;
        }

        /* Respect user preference for reduced motion - Enhanced */
        @media (prefers-reduced-motion: reduce) {
            /* Disable all animations */
            *,
            *::before,
            *::after {
                animation: none !important;
                transition: opacity 0.2s ease !important;
            }
            
            /* Disable nebula, lens, and beam animations */
            .nebula,
            .lens,
            .beam {
                animation: none !important;
            }
            
            /* Hide stars canvas for reduced motion */
            #starsCanvas {
                display: none !important;
            }
            
            /* Disable transform animations */
            .fade-in,
            .fade-in-up,
            .fade-in-up-delay-1,
            .fade-in-up-delay-2,
            .fade-in-up-delay-3,
            .hero-section.fade-in {
                opacity: 1 !important;
                transform: none !important;
                animation: none !important;
            }
            
            /* Disable hover transforms */
            .hero-cta-primary:hover,
            .hero-cta-secondary:hover,
            .final-cta-button:hover,
            .feature-card:hover {
                transform: none !important;
            }
            
            /* Disable glow pulse animations */
            .features-grid::before,
            .features-section::after {
                animation: none !important;
                transform: none !important;
            }
            *,
            *::before,
            *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
            
            .fade-in,
            .fade-in-down,
            .fade-in-up,
            .fade-in-up.animate {
                animation: none !important;
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }
            
            .career-tools-cta-button:hover,
            .final-cta-button:hover {
                transform: none !important;
            }
        }

        /* ========================================
           CONTRAST IMPROVEMENTS
           Enhanced text readability while preserving brand aesthetics
           ======================================== */

        /* REMOVED: Duplicate text-shadow rules that were causing hero text duplication
           Text shadows are now defined once in the main hero-title, hero-subtitle, tagline rules above
           This prevents multiple shadow layers from stacking and creating ghosting effect */

        /* Hero micro tagline */
        .hero-micro-tagline {
            color: rgba(229, 233, 255, 0.88);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* Hero banners - enhance text visibility */
        .hero-banner {
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        }

        .hero-banner-dual-ai,
        .hero-banner-game {
            background-color: rgba(10, 18, 35, 0.55);
        }

        /* AI Explainer section improvements */
        .ai-explainer-title {
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
            /* Brighter color for better mobile visibility */
            color: #A8E5FF !important;
        }

        .ai-explainer-intro {
            color: rgba(229, 233, 255, 0.92);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }

        .ai-explainer-subtitle {
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
        }

        .ai-explainer-body {
            color: rgba(229, 233, 255, 0.88);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
        }

        .ai-explainer-role {
            color: rgba(155, 212, 255, 0.95);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        /* AI Explainer blocks - enhance background for better contrast */
        .ai-explainer-block {
            background: rgba(10, 18, 35, 0.55);
        }

        /* AR/VR Lab section - critical contrast improvements */
        .ar-vr-lab-title {
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            /* Enhanced gradient for better mobile visibility */
            background: linear-gradient(120deg, #FFFFFF 0%, #E0F0FF 50%, #BBD9FF 100%) !important;
            -webkit-background-clip: text !important;
            background-clip: text !important;
            color: transparent !important;
        }

        .ar-vr-lab-subtitle {
            color: rgba(229, 233, 255, 0.95);
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
        }

        .ar-vr-lab-list li {
            color: rgba(229, 233, 255, 0.95);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
        }

        .ar-vr-lab-note {
            color: rgba(200, 210, 255, 0.95);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* AR/VR container - add subtle dark overlay for better text contrast */
        .ar-vr-lab-container {
            background: radial-gradient(circle at 0% 0%,
                    rgba(57, 242, 255, 0.18),
                    transparent 55%),
                radial-gradient(circle at 100% 100%,
                    rgba(155, 93, 255, 0.22),
                    transparent 60%),
                rgba(10, 18, 35, 0.6);
        }

        /* Career transition section improvements */
        .career-transition-title {
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        .career-transition-subtitle {
            color: rgba(229, 233, 255, 0.92);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }

        /* Career tools section improvements */
        .career-tools-title {
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        .career-tools-subtitle {
            color: rgba(229, 233, 255, 0.9);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }

        /* Gaming section improvements */
        .gaming-title {
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        .gaming-subtitle {
            color: rgba(229, 233, 255, 0.9);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        }

        /* Final CTA section improvements */
        .final-cta-title {
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
            /* Enhanced gradient for better mobile visibility */
            background: linear-gradient(90deg, #A8E5FF 0%, #7DD6FF 50%, #5FA8FF 100%) !important;
            -webkit-background-clip: text !important;
            background-clip: text !important;
            color: transparent !important;
        }

        .final-cta-subtitle {
            color: rgba(229, 233, 255, 0.92);
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
        }

        /* CTA Buttons - ensure text is always readable */
        .hero-cta-primary,
        .hero-cta-secondary,
        .cta-button,
        .final-cta-button {
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        /* Coming soon content */
        .coming-soon-subtext {
            color: rgba(229, 233, 255, 0.8);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
        }

        /* Mobile-specific contrast enhancements - solid white for readability on small screens */
        @media (max-width: 768px) {
            /* Solid white for gradient-text titles on mobile - max contrast on dark background */
            .gradient-text {
                color: #FFFFFF !important;
                -webkit-text-fill-color: #FFFFFF !important;
                background: none !important;
                -webkit-background-clip: unset !important;
                background-clip: unset !important;
                text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 0 24px rgba(255, 255, 255, 0.15);
            }

            /* Increase text shadows slightly on mobile for better readability */
            /* Mobile: Slightly stronger shadows for readability, but still SINGLE shadow per element */
            .hero-title {
                text-shadow: 0 0 10px rgba(103, 192, 255, 0.5), 0 2px 10px rgba(0, 0, 0, 0.5);
            }
            
            .hero-title .hero-brand-title {
                text-shadow: inherit; /* Inherit from parent, no duplication */
            }

            .hero-subtitle,
            .tagline {
                text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
            }

            .ar-vr-lab-title {
                text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
                /* Even brighter gradient for small mobile screens */
            }
            
            /* Enhanced contrast for Dual-Core AI Engine text on mobile */
            .hero-banner-dual-ai span[style*="background: linear-gradient"],
            .hero-banner-dual-ai span[data-lang-el*="Παγκόσμια Καινοτομία"],
            .hero-banner-dual-ai span[data-lang-en*="Global Innovation"] {
                background: linear-gradient(90deg, #FFD700, #FFA854, #39F2FF) !important;
                -webkit-background-clip: text !important;
                background-clip: text !important;
                color: transparent !important;
                filter: brightness(1.3) !important;
                text-shadow: 0 0 10px rgba(255, 168, 84, 0.5) !important;
            }
            
            /* Brighter blue for #9BD4FF spans in Dual-Core AI banner */
            .hero-banner-dual-ai span[style*="color:#9BD4FF"],
            .hero-banner-dual-ai span[style*="color: #9BD4FF"] {
                color: #B8F0FF !important;
            }
            
            /* Enhanced contrast for AI Explainer title on mobile */
            .ai-explainer-title {
                color: #B8F0FF !important;
                -webkit-text-fill-color: #B8F0FF !important;
                text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 0 20px rgba(184, 240, 255, 0.3);
            }
            
            .ai-explainer-title.gradient-text {
                color: #FFFFFF !important;
                -webkit-text-fill-color: #FFFFFF !important;
                background: none !important;
                -webkit-background-clip: unset !important;
                background-clip: unset !important;
            }
            
            /* Enhanced contrast for Final CTA title on mobile */
            .final-cta-title {
                text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 0 20px rgba(184, 240, 255, 0.3);
            }
            
            /* Gaming & career transition titles - solid white on mobile */
            .gaming-title.gradient-text,
            .career-transition-title.gradient-text,
            .invisible-professions-title.gradient-text {
                color: #FFFFFF !important;
                -webkit-text-fill-color: #FFFFFF !important;
                background: none !important;
                -webkit-background-clip: unset !important;
                background-clip: unset !important;
            }

            /* Body text - brighter on mobile for readability */
            .gaming-description,
            .invisible-professions-intro,
            .invisible-professions-main,
            .features-subtitle,
            .ai-explainer-intro,
            .ai-explainer-subhead {
                color: rgba(255, 255, 255, 0.95) !important;
                text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
            }
            
            /* Gaming feature items - brighter text */
            .gaming-feature-item span {
                color: rgba(229, 233, 255, 0.95) !important;
                opacity: 1;
            }
            
            /* Features title - solid white on mobile for readability */
            .features-title .title-text {
                color: #FFFFFF !important;
                -webkit-text-fill-color: #FFFFFF !important;
                background: none !important;
                -webkit-background-clip: unset !important;
                background-clip: unset !important;
            }

            .ar-vr-lab-subtitle,
            .ar-vr-lab-list li {
                text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
            }

            /* Slightly darker backgrounds on mobile for better contrast */
            .hero-banner-dual-ai,
            .hero-banner-game {
                background-color: rgba(10, 18, 35, 0.65);
            }

            .ai-explainer-block {
                background: rgba(10, 18, 35, 0.65);
            }

            .ar-vr-lab-container {
                background: radial-gradient(circle at 0% 0%,
                        rgba(57, 242, 255, 0.15),
                        transparent 55%),
                    radial-gradient(circle at 100% 100%,
                        rgba(155, 93, 255, 0.18),
                        transparent 60%),
                    rgba(10, 18, 35, 0.7);
            }
        }

        @media (max-width: 480px) {
            /* Solid white titles on small mobile - max contrast */
            .gradient-text {
                color: #FFFFFF !important;
                -webkit-text-fill-color: #FFFFFF !important;
                background: none !important;
                -webkit-background-clip: unset !important;
                background-clip: unset !important;
            }
            .ai-explainer-title.gradient-text,
            .gaming-title.gradient-text,
            .career-transition-title.gradient-text,
            .invisible-professions-title.gradient-text,
            .final-cta-title.gradient-text {
                color: #FFFFFF !important;
                -webkit-text-fill-color: #FFFFFF !important;
                background: none !important;
                -webkit-background-clip: unset !important;
                background-clip: unset !important;
            }
            .hero-banner-dual-ai span[style*="color:#9BD4FF"],
            .hero-banner-dual-ai span[style*="color: #9BD4FF"] {
                color: #C8F5FF !important;
            }
        }

        /* Invisible Professions Section */
        .invisible-professions-section {
            padding: 60px 2rem;
            margin-top: 0;
            margin-bottom: 0;
        }

        .invisible-professions-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
        }

        .invisible-professions-banner {
            max-width: 900px;
            width: 100%;
            padding: 48px 56px;
            border-radius: 24px;
            background: linear-gradient(
                135deg,
                rgba(125, 214, 255, 0.12) 0%,
                rgba(155, 93, 255, 0.16) 50%,
                rgba(125, 214, 255, 0.1) 100%
            );
            border: 1px solid rgba(125, 214, 255, 0.3);
            /* Reduced glow for less visual noise */
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(125, 214, 255, 0.2);
            text-align: center;
            position: relative;
            backdrop-filter: blur(12px) saturate(140%);
            -webkit-backdrop-filter: blur(12px) saturate(140%);
        }

        .invisible-professions-title {
            font-size: clamp(1.75rem, 3.5vw, 2.75rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .invisible-professions-intro {
            font-size: clamp(0.9375rem, 1.75vw, 1.125rem);
            line-height: 1.75;
            color: rgba(229, 233, 255, 0.9);
            margin-bottom: 1.25rem;
            text-align: center;
        }

        .invisible-professions-main {
            font-size: clamp(1rem, 2vw, 1.25rem);
            line-height: 1.8;
            color: rgba(229, 233, 255, 0.88);
            margin-bottom: 1.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
        }

        .invisible-professions-intro:last-of-type {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .invisible-professions-section {
                padding: 50px 1rem;
            }
        }

        /* Hub Icons Section */
        .hub-icons-section {
            padding: 60px 2rem;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .hub-icons-section > div {
            max-width: 1200px;
            margin: 0 auto;
        }

        .hub-icons-section > div > div {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .hub-icon-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            padding: 1.5rem;
            border-radius: 16px;
            background: rgba(15, 20, 32, 0.4);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-decoration: none;
            min-width: 120px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            animation: hub-icon-float 4s ease-in-out infinite;
        }

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

        .hub-icon-link::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 2px;
            background: linear-gradient(135deg, currentColor, transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .hub-icon-link:hover {
            transform: translateY(-8px) scale(1.1);
            animation: none;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
        }

        .hub-icon-link:hover::before {
            opacity: 0.6;
        }

        .hub-icon-link > div:first-child {
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .hub-icon-link:hover > div:first-child {
            transform: scale(1.2) rotate(5deg);
        }

        /* Specific colors for each hub icon */
        .hub-icon-link[href*="society"] {
            border-color: rgba(74, 144, 226, 0.3);
        }

        .hub-icon-link[href*="society"]:hover {
            border-color: rgba(74, 144, 226, 0.6);
            box-shadow: 0 12px 32px rgba(74, 144, 226, 0.3);
        }

        .hub-icon-link[href*="Business"] {
            border-color: rgba(255, 123, 0, 0.3);
        }

        .hub-icon-link[href*="Business"]:hover {
            border-color: rgba(255, 123, 0, 0.6);
            box-shadow: 0 12px 32px rgba(255, 123, 0, 0.3);
        }

        .hub-icon-link[href*="health"] {
            border-color: rgba(255, 215, 0, 0.3);
        }

        .hub-icon-link[href*="health"]:hover {
            border-color: rgba(255, 215, 0, 0.6);
            box-shadow: 0 12px 32px rgba(255, 215, 0, 0.3);
        }

        .hub-icon-link[href*="creative"] {
            border-color: rgba(231, 76, 60, 0.3);
        }

        .hub-icon-link[href*="creative"]:hover {
            border-color: rgba(231, 76, 60, 0.6);
            box-shadow: 0 12px 32px rgba(231, 76, 60, 0.3);
        }

        .hub-icon-link[href*="sustainability"] {
            border-color: rgba(46, 204, 113, 0.3);
        }

        .hub-icon-link[href*="sustainability"]:hover {
            border-color: rgba(46, 204, 113, 0.6);
            box-shadow: 0 12px 32px rgba(46, 204, 113, 0.3);
        }

        @media (max-width: 768px) {
            .hub-icons-section {
                padding: 50px 1rem;
            }

            .hub-icon-link {
                min-width: 100px;
                padding: 1.25rem;
            }

            .hub-icon-link > div:first-child {
                font-size: 2.5rem !important;
            }
        }

            .invisible-professions-banner {
                padding: 36px 28px;
                border-radius: 20px;
            }

            .invisible-professions-title {
                font-size: clamp(1.5rem, 5vw, 2rem);
                margin-bottom: 1.25rem;
            }

            .invisible-professions-intro {
                font-size: clamp(0.875rem, 3vw, 1rem);
                margin-bottom: 1rem;
            }

            .invisible-professions-main {
                font-size: clamp(0.9375rem, 4vw, 1.125rem);
                line-height: 1.7;
                margin-bottom: 1.25rem;
            }
        