
:root {
            --bg-dark: #030214;
            --card-bg: rgba(6, 6, 29, 0.6);
            --card-border: rgba(255, 255, 255, 0.08);
            --text-main: #ffffff;
            --text-muted: #94a3b8;
            --primary-glow: #3b82f6;
            --secondary-glow: #8b5cf6;
            --accent-pink: #d946ef;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
            cursor:url("cursor.jpeg")16 16,auto;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
        }

        /* Container */
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Navbar */
        header {
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
        }

        .logo-icon {
            color: #3b82f6;
            font-size: 28px;
        }

        .logo span {
            color: #3b82f6;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover, nav a.active {
            color: #fff;
        }

        nav a.active {
            position: relative;
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            border-radius: 2px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .theme-toggle {
            background: none;
            border: none;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
        }

        .btn-login {
            background: none;
            border: 1px solid var(--card-border);
            color: #fff;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-login:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .btn-signup {
            background: linear-gradient(135deg, #3b82f6, #6366f1);
            color: #fff;
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-signup:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
        }

        /* Hero Section */
        .hero {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            align-items: center;
            padding: 40px 0 60px 0;
            position: relative;
        }

        .hero-left {
            z-index: 2;
        }

        .badge-ai {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(139, 92, 246, 0.15);
            border: 1px solid rgba(139, 92, 246, 0.3);
            color: #c084fc;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .hero-left h1 {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: 0;
        }

        .hero-left h1 span {
            background: linear-gradient(135deg, #8b5cf6, #d946ef);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            color: var(--text-muted);
            font-size: 18px;
            line-height: 1.6;
            max-width: 480px;
            margin-bottom: 40px;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: #fff;
            text-decoration: none;
            border: none;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        /* Social Proof Users */
        .social-proof {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .user-avatars {
            display: flex;
        }

        .user-avatars img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--bg-dark);
            margin-left: -12px;
        }

        .user-avatars img:first-child {
            margin-left: 0;
        }

        .proof-text {
            color: var(--text-muted);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .proof-text span {
            color: #10b981;
            font-weight: 600;
        }

        /* Hero Right Side Graphics Container */
        .hero-right {
            position: relative;
            height: 550px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: visible;
            width: 100%;
        }

        /* Hero Character Wrapper & Blend Mode magic */
        .hero-character-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
        }

        .main-hero-asset {
            width: 105%;
            height: 105%;
            object-fit: contain;
            pointer-events: none;
            filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.15));
        }

        /* Connecting Paths Behind the Cards */
        .connecting-paths {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .glowing-dot {
            animation: pulse-dot 2.5s infinite alternate;
        }

        .dot-1 { animation-delay: 0s; fill: #8b5cf6; }
        .dot-2 { animation-delay: 0.8s; fill: #3b82f6; }
        .dot-3 { animation-delay: 1.6s; fill: #d946ef; }

        @keyframes pulse-dot {
            0% {
                r: 3px;
                opacity: 0.4;
                filter: drop-shadow(0 0 4px currentColor);
            }
            100% {
                r: 6px;
                opacity: 1;
                filter: drop-shadow(0 0 12px currentColor);
            }
        }

        /* Floating Cards Base Styling */
        .floating-card {
            position: absolute;
            background: rgba(6, 6, 29, 0.65);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 16px 20px;
            z-index: 10;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                        box-shadow 0.4s ease, 
                        border-color 0.4s ease;
            cursor: pointer;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            user-select: none;
        }

        .floating-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* AI Career Match Card */
        .card-career-match {
            width: 190px;
            top: 50px;
            left: -10px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(16, 185, 129, 0.05);
            animation: float-slow 6s ease-in-out infinite alternate;
        }

        .card-career-match:hover {
            box-shadow: 0 16px 45px rgba(16, 185, 129, 0.25), inset 0 0 20px rgba(16, 185, 129, 0.1);
        }

        .card-career-match .card-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 8px;
            text-align: left;
        }

        .card-career-match .card-value-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .card-career-match .card-value {
            font-size: 26px;
            font-weight: 700;
            color: #10b981;
            text-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
        }

        .card-career-match .sparkline {
            width: 70px;
            height: 32px;
            overflow: visible;
        }

        /* High Growth Careers Card */
        .card-growth {
            width: 190px;
            top: 35px;
            right: 0px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(139, 92, 246, 0.05);
            animation: float-medium 7s ease-in-out infinite alternate;
        }

        .card-growth:hover {
            box-shadow: 0 16px 45px rgba(139, 92, 246, 0.25), inset 0 0 20px rgba(139, 92, 246, 0.1);
        }

        .card-growth .card-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 12px;
            text-align: left;
        }

        .card-growth .bar-chart {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            height: 36px;
            gap: 5px;
        }

        .card-growth .bar-col {
            flex: 1;
            height: 100%;
            display: flex;
            align-items: flex-end;
        }

        .card-growth .bar {
            width: 100%;
            background: linear-gradient(0deg, #3b82f6 0%, #8b5cf6 100%);
            border-radius: 2px 2px 0 0;
            box-shadow: 0 0 6px rgba(139, 92, 246, 0.3);
            transition: transform 0.3s ease;
        }

        .card-growth:hover .bar {
            transform: scaleY(1.1);
            filter: brightness(1.2);
        }

        /* Salary Range Card */
        .card-salary {
            width: 210px;
            bottom: 140px;
            right: -20px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(16, 185, 129, 0.05);
            animation: float-fast 5s ease-in-out infinite alternate;
        }

        .card-salary:hover {
            box-shadow: 0 16px 45px rgba(16, 185, 129, 0.2), inset 0 0 20px rgba(16, 185, 129, 0.1);
        }

        .card-salary .card-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(16, 185, 129, 0.12);
            border: 1px solid rgba(16, 185, 129, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #10b981;
            font-size: 20px;
            box-shadow: 0 0 12px rgba(16, 185, 129, 0.25);
        }

        .card-salary .card-content {
            display: flex;
            flex-direction: column;
            gap: 1px;
            text-align: left;
        }

        .card-salary .card-label {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .card-salary .card-val {
            font-size: 17px;
            font-weight: 700;
            color: #fff;
        }

        /* Personalized Roadmap Card */
        .card-roadmap {
            bottom: 170px;
            left: -30px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(217, 70, 239, 0.05);
            animation: float-slow 8s ease-in-out infinite alternate-reverse;
        }

        .card-roadmap:hover {
            box-shadow: 0 16px 45px rgba(217, 70, 239, 0.2), inset 0 0 20px rgba(217, 70, 239, 0.1);
        }

        .card-roadmap .roadmap-text {
            font-size: 13px;
            font-weight: 600;
            color: #fff;
        }

        .card-roadmap .roadmap-arrow {
            color: #d946ef;
            font-size: 15px;
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
        }

        .card-roadmap:hover .roadmap-arrow {
            transform: translateX(4px);
        }

        /* Keyframe Floating Animations */
        @keyframes float-slow {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-16px); }
        }

        @keyframes float-medium {
            0% { transform: translateY(0px) translateX(0px); }
            100% { transform: translateY(-12px) translateX(6px); }
        }

        @keyframes float-fast {
            0% { transform: translateY(0px) translateX(0px); }
            100% { transform: translateY(-8px) translateX(-5px); }
        }

        .pulse-dot {
            animation: pulse-dot-opacity 1.5s ease-in-out infinite alternate;
        }

        @keyframes pulse-dot-opacity {
            0% { opacity: 0.4; }
            100% { opacity: 1; }
        }


        /* Features Section Header */
        .section-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 32px;
        }

        .section-title span {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Grid features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }

        .feature-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 24px 16px;
            text-align: center;
            transition: transform 0.3s, border-color 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.15);
            background: rgba(10, 10, 42, 0.8);
        }

        .icon-wrapper {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 20px;
        }

        /* Individual icon variants */
        .f-quiz { background: rgba(139, 92, 246, 0.15); color: #a855f7; }
        .f-roadmaps { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
        .f-insights { background: rgba(16, 185, 129, 0.15); color: #10b981; }
        .f-courses { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
        .f-tracker { background: rgba(236, 72, 153, 0.15); color: #ec4899; }
        .f-mentor { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }
        .f-compare { background: rgba(168, 85, 247, 0.15); color: #a855f7; }

        .feature-card h3 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.3;
            min-height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.5;
        }

        /* Footer Value Bar */
        .value-bar {
            background: rgba(6, 6, 29, 0.4);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 24px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            margin-bottom: 60px;
        }

        .value-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 0 24px;
            border-right: 1px solid rgba(255, 255, 255, 0.08);
        }

        .value-item:last-child {
            border-right: none;
        }

        .value-icon {
            font-size: 28px;
            color: #3b82f6;
        }

        .value-info h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .value-info p {
            color: var(--text-muted);
            font-size: 13px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .features-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .hero h1 { font-size: 48px; }
            .card-roadmap { left: -10px; }
            .card-salary { right: -10px; }
            .card-career-match { left: 0px; }
            .card-growth { right: 0px; }
        }

        @media (max-width: 900px) {
            header nav, header .nav-actions {
                display: none !important;
            }
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            .hero-left {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .hero-cta {
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero-right {
                max-width: 500px;
                margin: 0 auto;
                height: 480px;
            }
            .hero-desc { margin-left: auto; margin-right: auto; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .value-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .value-item { border-right: none; }
        }

        @media (max-width: 550px) {
            .hero-right {
                transform: scale(0.78);
                transform-origin: center center;
                height: 400px;
                margin: -20px auto;
            }
            .features-grid { grid-template-columns: 1fr; }
            .value-bar { grid-template-columns: 1fr; gap: 16px; }
        }

        .login-section {
            background: rgba(6, 6, 29, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 60px 30px;
            margin-bottom: 60px;
        }

        .login-card {
            width: 100%;
            max-width: 560px;
            margin: 0 auto;
            background-color: #090b1c;
            border: 1px solid #181b35;
            border-radius: 20px;
            padding: 50px 45px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .login-section .login-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .login-section .login-header h1 {
            color: #ffffff;
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .login-section .login-header p {
            color: #94a3b8;
            font-size: 14px;
        }

        .auth-brand {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 18px;
            color: #93c5fd;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .auth-trust-note {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: 24px;
            padding: 13px 14px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 10px;
            background: rgba(59, 130, 246, 0.07);
            color: #94a3b8;
            font-size: 12px;
            line-height: 1.5;
        }

        .auth-trust-note i {
            margin-top: 2px;
            color: #60a5fa;
        }

        .login-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .input-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .input-group label {
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-wrapper input {
            width: 100%;
            background-color: #0e1126;
            border: 1px solid #1d2144;
            padding: 16px 16px 16px 48px;
            border-radius: 10px;
            color: #ffffff;
            font-size: 15px;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .input-wrapper input:focus {
            border-color: #3b82f6;
        }

        .input-wrapper input::placeholder {
            color: #4b5175;
        }

        .input-icon {
            position: absolute;
            left: 18px;
            color: #4b5175;
            font-size: 18px;
        }

        .toggle-password {
            position: absolute;
            right: 18px;
            color: #4b5175;
            cursor: pointer;
            font-size: 18px;
        }

        .form-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            margin-top: 4px;
        }

        .checkbox-container {
            color: #ffffff;
            display: flex;
            align-items: center;
            position: relative;
            padding-left: 28px;
            cursor: pointer;
            user-select: none;
        }

        .checkbox-container input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        .checkmark {
            position: absolute;
            left: 0;
            height: 18px;
            width: 18px;
            background-color: transparent;
            border: 1px solid #0062ff;
            border-radius: 4px;
        }

        .checkbox-container input:checked ~ .checkmark {
            background-color: #0062ff;
        }

        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }

        .checkbox-container input:checked ~ .checkmark:after {
            display: block;
        }

        .checkbox-container .checkmark:after {
            left: 5px;
            top: 2px;
            width: 5px;
            height: 9px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .forgot-password {
            color: #6c5ce7;
            text-decoration: none;
            font-weight: 500;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        .reset-status {
            margin-top: 20px;
            padding: 13px 14px;
            border: 1px solid rgba(96, 165, 250, 0.3);
            border-radius: 10px;
            background: rgba(59, 130, 246, 0.1);
            color: #bfdbfe;
            font-size: 13px;
            line-height: 1.5;
        }

        .reset-divider {
            height: 1px;
            margin: 28px 0;
            border: 0;
            background: #1c2042;
        }

        .reset-subheading {
            margin-bottom: 20px;
            color: #fff;
            font-size: 18px;
        }

        [hidden] {
            display: none !important;
        }

        .btn-submit {
            background: linear-gradient(90deg, #0062ff 0%, #6a32f7 100%);
            border: none;
            border-radius: 10px;
            color: #ffffff;
            padding: 16px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
            transition: opacity 0.2s ease;
        }

        .btn-submit:hover {
            opacity: 0.9;
        }

        .divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 30px 0;
            color: #383e66;
            font-size: 13px;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #1c2042;
        }

        .divider span {
            padding: 0 15px;
        }

        .social-logins {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .btn-social {
            background-color: transparent;
            border: 1px solid #1d2144;
            border-radius: 10px;
            color: #ffffff;
            padding: 14px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            transition: background-color 0.2s ease;
        }

        .btn-social:hover {
            background-color: rgba(255, 255, 255, 0.03);
        }

        .social-icon {
            width: 20px;
            height: 20px;
        }

        .login-footer {
            margin-top: 24px;
            text-align: center;
            color: #94a3b8;
            font-size: 14px;
        }

        .login-footer a {
            color: #6c5ce7;
            text-decoration: none;
        }

        .login-footer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 900px) {
            .login-section { padding: 40px 20px; }
            .login-card { padding: 40px 30px; }
        }

        @media (max-width: 640px) {
            .login-section { padding: 30px 16px; }
            .login-card { padding: 30px 24px; }
        }

        .login-container-wrapper {
            padding: 60px 40px;
            max-width: 720px;
            margin: 0 auto;
        }

        @media (max-width: 640px) {
            .login-container-wrapper {
                padding: 40px 16px;
            }
        }
.auth-brand{display:flex!important;align-items:center;justify-content:center;gap:10px}.auth-brand-logo{width:42px;height:42px;border-radius:12px;object-fit:cover;display:block;box-shadow:0 0 20px rgba(59,130,246,.35)}
.header-brand-logo,.sidebar-brand-logo{width:40px;height:40px;border-radius:11px;object-fit:cover;object-position:center;display:block;flex:0 0 auto;box-shadow:0 0 20px rgba(59,130,246,.3)}.sidebar-brand-logo{width:34px;height:34px;border-radius:9px}

/* Keep the Home brand centered while placing the main links on the right. */
.home-page header{width:100vw;margin-left:calc(50% - 50vw);display:grid;grid-template-columns:minmax(0,1fr) auto minmax(620px,1fr);align-items:center;position:relative;padding-left:max(70px,calc((100vw - 1440px)/2 + 40px))!important;padding-right:max(70px,calc((100vw - 1440px)/2 + 40px))!important}.home-page header>.logo{grid-column:2;grid-row:1;justify-self:center;white-space:nowrap}.home-page header>nav{grid-column:3;grid-row:1;justify-self:end}.home-page header>.nav-actions{grid-column:3;grid-row:1;justify-self:end}
@media(max-width:1440px) and (min-width:1201px){.home-page header>nav{gap:20px}.home-page header>nav a{font-size:14px}}
@media(max-width:1200px) and (min-width:901px){.home-page header{grid-template-columns:minmax(0,1fr) auto minmax(500px,1fr)}.home-page header>nav{gap:12px}.home-page header>nav a{font-size:13px;padding-inline:10px}.home-page header>.nav-actions{gap:10px}.home-page header .btn-login,.home-page header .btn-signup{padding-inline:15px}}
@media(max-width:900px){.home-page header{grid-template-columns:1fr;padding-left:0!important;padding-right:0!important}.home-page header>.logo{grid-column:1;grid-row:1;justify-self:center}}

/* Home polish pass */
html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
}

img,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
.feature-card:focus-visible {
    outline: 3px solid rgba(56, 189, 248, 0.78);
    outline-offset: 4px;
}

.page-container {
    width: min(calc(100% - 2rem), 1200px);
    margin-inline: auto;
}

.home-page {
    min-height: 100vh;
    overflow-x: hidden;
}

.home-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
}

.home-page header {
    min-height: 104px;
    isolation: isolate;
}

.home-page header::before {
    content: "";
    position: absolute;
    inset: 18px max(54px, calc((100vw - 1440px)/2 + 24px));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(8, 12, 35, 0.66), rgba(5, 7, 22, 0.34));
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: -1;
}

.home-page .logo {
    transition: transform 0.28s ease, filter 0.28s ease;
}

.home-page .logo:hover {
    transform: translateY(-1px);
    filter: drop-shadow(0 0 18px rgba(59, 130, 246, 0.32));
}

.home-page .logo .brand-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    color: #fff;
    line-height: 1;
}

.home-page .logo .brand-title {
    color: #fff;
}

.home-page .logo .brand-title span {
    color: #3b82f6;
}

.home-page .logo .brand-byline {
    color: #9fb3e8;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.1;
}

.home-page .sidebar-toggle {
    top: 50px;
    left: max(86px, calc((100vw - 1440px)/2 + 56px));
    width: 44px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.home-page header>nav {
    display: grid;
    grid-template-columns: repeat(5, max-content);
    align-items: center;
    justify-content: center;
    column-gap: 22px;
    padding: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-page header>nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 12px;
    border-radius: 12px;
    color: #9fb3e8;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.home-page header>nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-1px);
}

.home-page header>nav a.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(139, 92, 246, 0.18));
}

.home-page header>nav a.active::after {
    display: none;
}

.hero {
    min-height: 680px;
    gap: 42px;
}

.badge-ai,
.hero-left h1,
.hero-desc,
.hero-cta,
.hero-stats,
.section-title,
.features-grid,
.value-bar {
    animation: rise-in 0.8s ease both;
}

.hero-left h1 { animation-delay: 0.06s; }
.hero-desc { animation-delay: 0.12s; }
.hero-cta { animation-delay: 0.18s; }
.hero-stats { animation-delay: 0.24s; }
.section-title { animation-delay: 0.12s; }
.features-grid { animation-delay: 0.18s; }
.value-bar { animation-delay: 0.22s; }

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-ai {
    box-shadow: 0 0 28px rgba(139, 92, 246, 0.16);
}

.hero-left h1 span {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 52%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.btn-primary::before,
.btn-secondary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.2) 45%, transparent 65%);
    transform: translateX(-120%);
    transition: transform 0.65s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
}

.btn-primary:hover {
    box-shadow: 0 16px 38px rgba(37, 99, 235, 0.42);
}

.btn-secondary:hover {
    border-color: rgba(192, 132, 252, 0.6);
    box-shadow: 0 14px 34px rgba(139, 92, 246, 0.22);
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    transform: translateX(120%);
}

.btn-stream-guide {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.08);
    color: #d8b4fe;
    text-decoration: none;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 560px;
}

.hero-stat {
    min-width: 132px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-stat strong {
    display: block;
    margin-bottom: 3px;
    font-size: 20px;
    color: #fff;
}

.hero-stat span {
    color: #9caee8;
    font-size: 12px;
}

.main-hero-asset {
    animation: character-breathe 7s ease-in-out infinite alternate;
}

@keyframes character-breathe {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

.floating-card {
    border-radius: 14px;
}

.floating-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.section-title {
    text-align: center;
    margin-top: 20px;
}

.features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    position: relative;
    min-height: 0;
    height: auto;
    gap: 0.85rem;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(12, 16, 45, 0.78), rgba(5, 7, 24, 0.62));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(236, 72, 153, 0.18), rgba(16, 185, 129, 0.22));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.is-clickable {
    cursor: pointer;
}

.feature-card-featured {
    border-color: rgba(139, 92, 246, 0.28);
    background: linear-gradient(180deg, rgba(38, 20, 72, 0.7), rgba(8, 9, 31, 0.68));
}

.feature-card-featured h3 {
    color: #d8b4fe;
}

.f-stream {
    background: rgba(139, 92, 246, 0.15);
    color: #c084fc;
}

.icon-wrapper {
    flex: 0 0 auto;
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.035);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.icon-wrapper svg {
    width: 30px;
    height: 30px;
    stroke-width: 2;
}

.mobile-title-break {
    display: none;
}

.feature-card:hover .icon-wrapper {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.16), inset 0 0 18px rgba(255, 255, 255, 0.05);
}

.value-bar {
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(8, 13, 38, 0.82), rgba(7, 8, 28, 0.56));
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}

.value-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.11);
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-page header::before {
        inset: 18px 70px;
    }

    .hero {
        min-height: auto;
        padding-top: 34px;
    }

    .hero-stats {
        justify-content: center;
    }
}

/* Production mobile home layout */
@media (min-width: 901px) {
    .home-page .page-container {
        width: auto;
        max-width: 1440px;
        padding-inline: 40px;
    }
}

@media (max-width: 900px) {
    .home-page .page-container {
        width: min(calc(100% - 2rem), 1200px);
        max-width: none;
        padding-inline: 0;
    }

    .home-page header.site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        width: 100%;
        min-height: 0;
        margin: 0;
        padding: 12px 14px !important;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        background: rgba(6, 8, 26, 0.88);
        box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .home-page header.site-header::before {
        display: none;
    }

    .home-page header.site-header > .logo {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        min-width: 0;
        white-space: normal;
    }

    .home-page .logo .brand-copy {
        min-width: 0;
    }

    .home-page .logo .brand-title {
        font-size: clamp(1rem, 5vw, 1.25rem);
        line-height: 1.05;
    }

    .home-page .logo .brand-byline {
        font-size: clamp(0.66rem, 2.8vw, 0.76rem);
    }

    .home-page .header-brand-logo {
        width: 38px;
        height: 38px;
    }

    .home-page .sidebar-toggle.menu-toggle {
        position: static;
        grid-column: 2;
        grid-row: 1;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        justify-self: end;
        z-index: 1;
        flex: 0 0 auto;
        background: rgba(255, 255, 255, 0.08);
    }

    .home-page header.site-header > nav {
        grid-column: 1 / -1;
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 6px;
        width: 100%;
        max-height: 0;
        margin: 0;
        padding: 0 8px;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        border: 0;
        background: transparent;
        transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.28s ease, margin 0.28s ease;
    }

    .home-page header.site-header.is-menu-open > nav {
        max-height: 360px;
        margin-top: 6px;
        padding-block: 8px 4px;
        opacity: 1;
        pointer-events: auto;
    }

    .home-page header.site-header > nav a {
        min-height: 44px;
        justify-content: flex-start;
        padding: 12px 14px;
        border-radius: 12px;
        white-space: normal;
    }

    .home-page .sidebar,
    .home-page .sidebar-overlay {
        display: none;
    }

    body.mobile-nav-open {
        overflow-x: hidden;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 28px;
        padding: 28px 0 42px;
        text-align: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 0;
    }

    .badge-ai {
        margin-bottom: 18px;
    }

    .hero-left h1 {
        width: min(100%, 720px);
        margin-bottom: 18px;
        font-size: clamp(2rem, 8.5vw, 4.5rem);
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .hero-desc {
        width: min(100%, 36rem);
        max-width: none;
        margin: 0 auto 28px;
        font-size: clamp(1rem, 4vw, 1.2rem);
        line-height: 1.65;
    }

    .hero-cta {
        width: min(100%, 430px);
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }

    .hero-cta a,
    .btn-primary,
    .btn-secondary {
        min-height: 50px;
        width: 100%;
        max-width: none;
        justify-content: center;
        padding: 14px 18px;
        border-radius: 14px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 430px);
        max-width: none;
        gap: 12px;
        justify-content: initial;
    }

    .hero-stat {
        min-width: 0;
        width: 100%;
        padding: 14px 12px;
    }

    .hero-stat:last-child {
        grid-column: 1 / -1;
        width: min(100%, 14rem);
        justify-self: center;
    }

    .hero-right {
        width: min(100%, 560px);
        height: auto;
        aspect-ratio: 1 / 0.92;
        max-width: 100%;
        margin: 0 auto;
        transform: none;
        overflow: visible;
    }

    .hero-character-wrapper {
        width: 100%;
        height: 100%;
    }

    .main-hero-asset {
        width: 100%;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

    .floating-card {
        max-width: min(46%, 190px);
        padding: 12px 14px;
        border-radius: 14px;
    }

    .card-career-match {
        top: 5%;
        left: 2%;
    }

    .card-growth {
        top: 3%;
        right: 2%;
    }

    .card-roadmap {
        left: 4%;
        bottom: 15%;
    }

    .card-salary {
        right: 3%;
        bottom: 10%;
    }

    .section-title {
        width: min(100%, 760px);
        margin: 8px auto 24px;
        padding-inline: 0;
        text-align: center;
        font-size: clamp(2rem, 8vw, 3.5rem);
        line-height: 1.1;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        margin-bottom: 32px;
    }

    .feature-card {
        padding: 1.5rem 1.25rem;
    }

    .feature-card h3 {
        min-height: 0;
        margin-bottom: 0;
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .value-bar {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
        margin-bottom: 42px;
    }

    .value-item {
        min-width: 0;
        padding: 0;
        border-right: none;
    }
}

@media (max-width: 600px) {
    .mobile-title-break {
        display: block;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .home-page .page-container {
        width: min(calc(100% - 1.5rem), 1200px);
    }

    .hero {
        gap: 22px;
        padding-top: 22px;
    }

    .hero-right {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        aspect-ratio: auto;
        width: min(100%, 390px);
        height: auto;
    }

    .connecting-paths {
        display: none;
    }

    .hero-character-wrapper {
        grid-column: 1 / -1;
        aspect-ratio: 1 / 0.78;
        height: auto;
    }

    .main-hero-asset {
        height: 100%;
        max-height: 300px;
    }

    .floating-card,
    .card-career-match,
    .card-growth,
    .card-salary,
    .card-roadmap {
        position: static;
        width: 100%;
        max-width: none;
        min-width: 0;
        animation: none;
        transform: none;
        justify-self: stretch;
        cursor: default;
    }

    .floating-card:hover {
        transform: none;
    }

    .card-career-match .card-title,
    .card-growth .card-title,
    .card-roadmap .roadmap-text {
        font-size: 11px;
    }

    .card-career-match .card-value {
        font-size: 22px;
    }

    .card-salary {
        gap: 9px;
    }

    .card-salary .card-icon {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }

    .card-salary .card-val {
        font-size: 13px;
    }

    .card-roadmap {
        justify-content: space-between;
    }
}

@media (max-width: 380px) {
    .home-page .page-container {
        width: min(calc(100% - 1.25rem), 1200px);
    }

    .home-page header.site-header {
        padding-inline: 10px !important;
    }

    .hero-stats,
    .hero-right {
        grid-template-columns: 1fr;
    }

    .hero-stat:last-child {
        grid-column: auto;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
