
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --primary-glow: rgba(99, 102, 241, 0.4);
            --secondary: #22c55e;
            --accent: #f97316;
            --dark: #0a0c10;
            --gray-dark: #1e1f2a;
            --gray: #6c727f;
            --gray-light: #eef2ff;
            --white: #ffffff;
            --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --radius-xl: 1.5rem;
            --radius-2xl: 2rem;
            --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--white);
            color: var(--dark);
            line-height: 1.5;
            overflow-x: hidden;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(16px);
            background: rgba(255, 255, 255, 0.92);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .header__inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: baseline;
            gap: 0.25rem;
            text-decoration: none;
        }

        .logo__text {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
        }

        .logo__tagline {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--gray);
            letter-spacing: 1px;
        }

        .nav__list {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav__link {
            text-decoration: none;
            font-weight: 500;
            color: var(--gray-dark);
            transition: var(--transition);
            position: relative;
        }

        .nav__link:hover {
            color: var(--primary);
        }

        .nav__link--active {
            color: var(--primary);
            font-weight: 600;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 2.5rem;
            height: 2.5rem;
            position: relative;
            z-index: 1001;
            border-radius: 0.75rem;
            transition: var(--transition);
        }

        .mobile-menu-btn span {
            display: block;
            position: absolute;
            height: 2.5px;
            width: 1.5rem;
            background: var(--gray-dark);
            border-radius: 4px;
            left: 0.5rem;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn span:nth-child(1) {
            top: 0.75rem;
        }

        .mobile-menu-btn span:nth-child(2) {
            top: 1.2rem;
        }

        .mobile-menu-btn span:nth-child(3) {
            top: 1.65rem;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 1.2rem;
            background: var(--primary);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-8px);
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg);
            top: 1.2rem;
            background: var(--primary);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 6rem 2rem 2rem;
            transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            display: flex;
            flex-direction: column;
            border-left: 1px solid rgba(99, 102, 241, 0.2);
        }

        .mobile-nav.open {
            right: 0;
        }

        .mobile-nav__list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-nav__link {
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--gray-dark);
            padding: 0.5rem 0;
            display: inline-block;
            transition: var(--transition);
            border-bottom: 2px solid transparent;
        }

        .mobile-nav__link:hover,
        .mobile-nav__link--active {
            color: var(--primary);
            border-bottom-color: var(--primary);
            transform: translateX(6px);
        }

        .mobile-nav__btn {
            margin-top: 2rem;
            display: inline-block;
            text-align: center;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 768px) {
            .nav__list {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .container {
                padding: 0 1.5rem;
            }

            .header__inner {
                padding: 0.8rem 0;
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 2rem;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 0.9rem;
        }

        .btn--primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 12px var(--primary-glow);
        }

        .btn--primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 20px -8px var(--primary-glow);
        }

        .btn--outline {
            background: transparent;
            border: 1.5px solid var(--gray-light);
            color: var(--dark);
        }

        .btn--outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero__content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            padding: 4rem 0;
        }

        .hero__badge {
            display: inline-block;
            background: rgba(99, 102, 241, 0.1);
            backdrop-filter: blur(4px);
            padding: 0.5rem 1.25rem;
            border-radius: 2rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 2rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .hero__headline {
            font-size: clamp(2.8rem, 8vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #0f172a, #334155);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary), #c084fc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero__tagline {
            font-size: 1.25rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .hero__actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .blur-bg {
            position: absolute;
            width: 70vw;
            height: 70vw;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0) 70%);
            border-radius: 50%;
            top: -20%;
            left: -20%;
            z-index: 0;
            animation: float 20s infinite alternate;
        }

        .blur-bg-2 {
            bottom: -20%;
            right: -20%;
            top: auto;
            left: auto;
            background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0) 70%);
            animation: float 18s infinite alternate-reverse;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) scale(1);
            }

            100% {
                transform: translate(5%, 5%) scale(1.1);
            }
        }

        .features {
            padding: 6rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header__title {
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .features__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
            border-radius: var(--radius-xl);
            padding: 2rem;
            transition: var(--transition);
            border: 1px solid rgba(99, 102, 241, 0.1);
            box-shadow: var(--shadow-sm);
        }

        .card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .card__icon {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
            width: 4rem;
            height: 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 1rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .featured {
            background: linear-gradient(120deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 2rem;
            padding: 4rem;
            margin: 2rem 0;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .featured::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.08), transparent);
            transition: left 0.7s ease;
            pointer-events: none;
        }

        .featured:hover::before {
            left: 100%;
        }

        .featured:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .featured__inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .featured__points {
            list-style: none;
            margin: 1.5rem 0;
        }

        .featured__points li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .featured__points li::before {
            content: "✨";
        }

        .featured__image-container {
            background: white;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .featured:hover .featured__image-container {
            transform: scale(1.02);
        }

        .skillfolio-progress {
            margin: 1.5rem 0 1rem 0;
            background: rgba(255, 255, 255, 0.6);
            padding: 0.8rem;
            border-radius: 1rem;
            backdrop-filter: blur(4px);
        }

        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .progress-bar-container {
            background: #e2e8f0;
            border-radius: 1rem;
            height: 0.8rem;
            overflow: hidden;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .progress-fill-skill {
            width: 92%;
            height: 100%;
            background: linear-gradient(90deg, var(--primary), #a855f7, var(--primary));
            border-radius: 1rem;
            position: relative;
            animation: shimmerMove 2.5s infinite linear, glowPulse 1.8s infinite alternate;
            background-size: 200% auto;
        }

        @keyframes shimmerMove {
            0% {
                background-position: 0% 50%;
            }

            100% {
                background-position: 200% 50%;
            }
        }

        @keyframes glowPulse {
            0% {
                box-shadow: 0 0 3px rgba(99, 102, 241, 0.3);
                opacity: 0.9;
            }

            100% {
                box-shadow: 0 0 12px rgba(99, 102, 241, 0.7);
                opacity: 1;
            }
        }

        .stats-row {
            display: flex;
            gap: 1.5rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .stat-chip {
            background: white;
            padding: 0.3rem 0.9rem;
            border-radius: 2rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary);
            box-shadow: var(--shadow-sm);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            transition: all 0.2s;
        }

        .stat-chip:hover {
            transform: translateY(-2px);
            background: var(--primary);
            color: white;
        }

        .pending-project {
            padding: 5rem 0;
        }

        .project-showcase {
            background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
            border-radius: 2rem;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            border: 1px solid rgba(249, 115, 22, 0.2);
            position: relative;
            overflow: hidden;
        }

        .project-showcase::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
            animation: rotateBg 20s infinite linear;
            pointer-events: none;
        }

        @keyframes rotateBg {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .project-badge {
            display: inline-block;
            background: #f97316;
            color: white;
            padding: 0.4rem 1.2rem;
            border-radius: 2rem;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
            animation: badgePulse 1.5s infinite;
        }

        @keyframes badgePulse {
            0% {
                box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
            }

            70% {
                box-shadow: 0 0 0 8px rgba(249, 115, 22, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
            }
        }

        .project-title {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ea580c, #f97316);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }

        .project-progress {
            margin: 2rem 0;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 1.5rem 0;
        }

        .tech-tag {
            background: white;
            padding: 0.4rem 1rem;
            border-radius: 2rem;
            font-size: 0.8rem;
            font-weight: 500;
            color: #f97316;
            box-shadow: var(--shadow-sm);
            transition: all 0.2s;
        }

        .tech-tag:hover {
            transform: scale(1.05);
            background: #f97316;
            color: white;
        }

        .team {
            padding: 5rem 0;
            background: var(--gray-light);
            border-radius: 3rem;
            margin: 2rem 0;
        }

        .team__grid {
            display: grid;
            grid-template-columns: minmax(300px, 450px);
            justify-content: center;
            gap: 2rem;
        }

        .team-card {
            background: white;
            border-radius: 1.5rem;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            max-width: 450px;
            margin: 0 auto;
            width: 100%;
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .team-card__image {
            height: 320px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(145deg, #e0e7ff, #c7d2fe);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .avatar-svg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .team-card:hover .avatar-svg {
            transform: scale(1.05);
        }

        .team-card__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 1rem;
            padding-bottom: 1.5rem;
        }

        .team-card:hover .team-card__overlay {
            opacity: 1;
        }

        .team-card__social {
            background: white;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 2rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            text-decoration: none;
            color: var(--primary);
            transition: 0.2s;
        }

        .team-card__social:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }

        .team-card__content {
            padding: 1.5rem;
        }

        .founder-badge {
            background: var(--primary);
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.2rem 0.8rem;
            border-radius: 2rem;
            display: inline-block;
            margin-top: 0.5rem;
        }

        .cta-section {
            padding: 4rem 0;
        }

        .cta {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border-radius: 2rem;
            padding: 4rem;
            text-align: center;
            color: white;
        }

        .cta__title {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .footer {
            background: #0a0c10;
            color: #e2e8f0;
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }

        .footer__inner {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
        }

        .footer__links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .footer__link {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer__link:hover {
            color: var(--primary);
        }

        .footer__social-link {
            background: rgba(255, 255, 255, 0.1);
            width: 2rem;
            height: 2rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 2rem;
            text-decoration: none;
            color: white;
            transition: 0.2s;
        }

        .footer__social-link:hover {
            background: var(--primary);
            color: white;
        }

        .fade {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade.show {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .featured__inner {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .featured {
                padding: 2rem;
            }

            .footer__inner {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .project-title {
                font-size: 2rem;
            }

            .project-showcase {
                padding: 2rem;
            }
        }

        @media (max-width: 640px) {
            .hero__headline {
                font-size: 2.5rem;
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            opacity: 0.6;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--primary);
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(10px);
            }
        }
    