        /* ========================================
           RESET & BASE
           ======================================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-primary: #f8f9fa;
            --bg-secondary: #eef0f2;
            --bg-card: #ffffff;
            --bg-card-hover: #f5f6f8;
            --border: #dde1e6;
            --border-subtle: #e8ebee;
            --text-primary: #111827;
            --text-secondary: #4b5563;
            --text-muted: #9ca3af;
            --accent: #0f766e;
            --accent-dim: rgba(15, 118, 110, 0.08);
            --accent-glow: rgba(15, 118, 110, 0.05);
            --accent-secondary: #0d9488;
            --gradient-accent: linear-gradient(135deg, #0f766e, #0891b2);
            --white: #ffffff;
            --font-heading: 'Space Grotesk', sans-serif;
            --font-body: 'Inter', sans-serif;
            --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        ::selection {
            background: var(--accent);
            color: var(--white);
        }

        a {
            color: var(--accent-secondary);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover { color: var(--white); }
        a:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
            border-radius: 2px;
        }

        /* ========================================
           GEOMETRIC CANVAS BACKGROUND
           ======================================== */
        #geo-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.15;
        }

        /* ========================================
           NAVIGATION
           ======================================== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.25rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            background: rgba(248, 249, 250, 0.8);
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s ease, background 0.3s ease;
        }
        .nav.scrolled {
            border-bottom-color: var(--border-subtle);
            background: rgba(248, 249, 250, 0.95);
        }
        .nav-logo {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.03em;
        }
        .nav-logo span { color: var(--accent); }
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-links a {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            transition: color 0.2s ease;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--accent);
            transition: width 0.3s var(--ease-out);
        }
        .nav-links a:hover { color: var(--text-primary); }
        .nav-links a:hover::after { width: 100%; }

        /* Mobile menu */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
        }
        .nav-toggle span {
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        /* ========================================
           LAYOUT
           ======================================== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        section {
            padding: 7rem 0;
        }

        .section-label {
            font-family: var(--font-heading);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--accent);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .section-label::before {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--accent);
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.15;
            margin-bottom: 3rem;
            color: var(--text-primary);
        }

        /* ========================================
           HERO SECTION
           ======================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 5rem;
            position: relative;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 4rem;
            align-items: center;
            max-width: 1100px;
        }

        .hero-avatar-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-avatar {
            width: 280px;
            height: 280px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--border);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .hero-overline {
            font-family: var(--font-heading);
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .hero-overline::before {
            content: '';
            width: 32px;
            height: 1px;
            background: var(--accent);
        }

        .hero-name {
            font-family: var(--font-heading);
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            letter-spacing: -0.04em;
            line-height: 1;
            color: var(--text-primary);
            margin: 0.5rem 0 1rem;
        }
        .hero-name .accent-dot {
            color: var(--accent);
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            font-weight: 400;
            color: var(--text-secondary);
            letter-spacing: -0.01em;
            margin-bottom: 1.5rem;
        }
        .hero-title strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .hero-description {
            font-size: 1.05rem;
            line-height: 1.75;
            color: var(--text-secondary);
            max-width: 640px;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .hero-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .hero-meta-item svg {
            width: 16px;
            height: 16px;
            min-width: 16px;
            flex-shrink: 0;
            stroke: var(--accent);
        }

        .hero-cta {
            margin-top: 2.5rem;
        }
        .hero-cta-row {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        .hero-cta-icons {
            display: flex;
            gap: 0.5rem;
        }
        .hero-cta-buttons {
            display: flex;
            gap: 0.75rem;
        }

        /* Icon-only buttons (LinkedIn, Download) */
        .btn-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            background: transparent;
            border: 1.5px solid var(--accent);
            border-radius: 14px;
            color: var(--accent);
            cursor: pointer;
            transition: background 0.2s ease, color 0.2s ease, transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
        }
        .btn-icon:hover {
            background: var(--accent-dim);
            color: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(15, 118, 110, 0.15);
        }
        .btn-icon:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        .btn-icon svg {
            stroke: currentColor;
            width: 22px;
            height: 22px;
        }

        /* Text buttons */
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.75rem;
            height: 52px;
            background: transparent;
            color: var(--text-primary);
            font-family: var(--font-heading);
            font-size: 0.88rem;
            font-weight: 600;
            border: 1px solid var(--border);
            border-radius: 14px;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease;
        }
        .btn-secondary:hover {
            border-color: var(--accent);
            background: var(--accent-dim);
            color: var(--text-primary);
        }


        .scroll-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            margin-top: -6rem;
            padding-bottom: 2rem;
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-muted);
            position: relative;
            z-index: 1;
        }
        .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--accent), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }
        @keyframes scrollPulse {
            0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
            50% { opacity: 1; transform: scaleY(1); }
        }

        /* ========================================
           STATS BAR
           ======================================== */
        .stats-bar {
            padding: 3rem 0;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 3vw, 2.75rem);
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.03em;
            line-height: 1;
        }
        .stat-number .accent { color: var(--accent); }
        .stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 0.5rem;
        }

        /* ========================================
           EXPERIENCE SECTION
           ======================================== */
        .experience-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .exp-card {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 3rem;
            padding: 2.5rem;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            transition: border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .exp-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: var(--gradient-accent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .exp-card:hover {
            border-color: var(--border);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }
        .exp-card:hover::before { opacity: 1; }

        .exp-period {
            font-family: var(--font-heading);
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
            padding-top: 0.2rem;
        }
        .exp-duration {
            display: inline-block;
            font-size: 0.7rem;
            color: var(--accent);
            background: var(--accent-dim);
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            margin-top: 0.4rem;
            font-weight: 600;
        }

        .exp-header h3 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 0.25rem;
        }
        .exp-company {
            font-size: 1rem;
            color: var(--accent-secondary);
            font-weight: 500;
            margin-bottom: 0.25rem;
        }
        .exp-location {
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.35rem;
            margin-bottom: 1rem;
        }
        .exp-location svg {
            width: 14px;
            height: 14px;
        }

        .exp-description {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .exp-description li {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.65;
            padding-left: 1.2rem;
            position: relative;
        }
        .exp-description li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.55rem;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent);
            opacity: 0.6;
        }

        .exp-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1.25rem;
        }
        .tech-tag {
            font-size: 0.75rem;
            font-weight: 500;
            padding: 0.25rem 0.65rem;
            background: var(--accent-dim);
            color: var(--accent-secondary);
            border-radius: 4px;
            letter-spacing: 0.02em;
        }

        /* ========================================
           SKILLS SECTION
           ======================================== */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .skill-category {
            padding: 2rem;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
        }
        .skill-category:hover {
            border-color: var(--border);
            transform: translateY(-2px);
        }
        .skill-category-title {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .skill-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-dim);
            border-radius: 8px;
            flex-shrink: 0;
        }
        .skill-icon svg {
            width: 16px;
            height: 16px;
            stroke: var(--accent);
        }
        .skill-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .skill-list li {
            font-size: 0.82rem;
            color: var(--text-secondary);
            padding: 0.35rem 0.8rem;
            background: var(--bg-primary);
            border: 1px solid var(--border-subtle);
            border-radius: 6px;
            transition: border-color 0.2s ease, color 0.2s ease;
        }
        .skill-list li:hover {
            border-color: var(--accent);
            color: var(--text-primary);
        }

        /* ========================================
           TESTIMONIALS
           ======================================== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        .testimonial-card {
            padding: 2rem;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            position: relative;
            transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
        }
        .testimonial-card:hover {
            border-color: var(--border);
            transform: translateY(-2px);
        }
        .testimonial-quote-mark {
            font-family: var(--font-heading);
            font-size: 4rem;
            line-height: 1;
            color: var(--accent);
            opacity: 0.3;
            position: absolute;
            top: 1rem;
            right: 1.5rem;
        }
        .testimonial-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.75;
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        .testimonial-author {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
        }
        .testimonial-name {
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
        }
        .testimonial-role {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ========================================
           EDUCATION & CERTS
           ======================================== */
        .edu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .edu-card {
            padding: 1.75rem;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            transition: border-color 0.3s ease;
        }
        .edu-card:hover {
            border-color: var(--border);
        }
        .edu-card h3 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.35rem;
        }
        .edu-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .edu-card .edu-type {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        /* ========================================
           FOOTER / CONTACT
           ======================================== */
        .footer {
            padding: 4rem 0 3rem;
            border-top: 1px solid var(--border-subtle);
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .footer-info h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }
        .footer-info p {
            font-size: 0.9rem;
            color: var(--text-muted);
            max-width: 400px;
            line-height: 1.6;
        }
        .footer-links {
            display: flex;
            gap: 1.5rem;
        }
        .footer-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s var(--ease-spring);
        }
        .footer-link:hover {
            border-color: var(--accent);
            background: var(--accent-dim);
            transform: translateY(-2px);
        }
        .footer-link svg {
            width: 18px;
            height: 18px;
            stroke: var(--text-secondary);
            transition: stroke 0.2s ease;
        }
        .footer-link:hover svg { stroke: var(--accent); }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-subtle);
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ========================================
           REVEAL ANIMATIONS
           ======================================== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
        }
        .reveal-scale {
            opacity: 0;
            transform: scale(0.95);
        }

        /* ========================================
           GENAI BUTTON
           ======================================== */
        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        .btn-genai {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.75rem;
            height: 52px;
            background: var(--gradient-accent);
            color: var(--white);
            font-family: var(--font-heading);
            font-size: 0.88rem;
            font-weight: 600;
            border: none;
            border-radius: 14px;
            cursor: pointer;
            transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease, opacity 0.2s ease;
            position: relative;
            overflow: hidden;
        }
        .btn-genai::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                105deg,
                transparent 30%,
                rgba(255, 255, 255, 0.25) 50%,
                transparent 70%
            );
            background-size: 200% 100%;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        .btn-genai:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(15, 118, 110, 0.4);
        }
        .btn-genai:hover::after {
            opacity: 1;
            animation: shimmer 1.2s linear infinite;
        }
        .btn-genai:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* ========================================
           GENAI MODAL OVERLAY
           ======================================== */
        .modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            background: rgba(17, 24, 39, 0.6);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            opacity: 0;
            transition: opacity 0.25s ease;
        }
        .modal-overlay:not([hidden]) {
            opacity: 1;
        }
        /* hidden attribute support — override display:none with flex when removing hidden */
        .modal-overlay[hidden],
        .loading-skeleton[hidden],
        .error-message[hidden],
        .results-container[hidden],
        .file-upload-name[hidden] {
            display: none !important;
        }

        /* ========================================
           MODAL CONTAINER
           ======================================== */
        .modal-container {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            max-width: 720px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
            transform: translateY(16px) scale(0.98);
            transition: transform 0.3s var(--ease-out);
            /* Custom scrollbar */
            scrollbar-width: thin;
            scrollbar-color: var(--border) transparent;
        }
        .modal-overlay:not([hidden]) .modal-container {
            transform: translateY(0) scale(1);
        }
        .modal-container::-webkit-scrollbar { width: 5px; }
        .modal-container::-webkit-scrollbar-track { background: transparent; }
        .modal-container::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

        /* ========================================
           MODAL HEADER
           ======================================== */
        .modal-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.75rem 1.75rem 0;
            position: sticky;
            top: 0;
            background: var(--bg-card);
            z-index: 1;
            border-bottom: 1px solid var(--border-subtle);
            padding-bottom: 1.25rem;
        }
        .modal-title {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0 0 0.3rem;
        }
        .modal-title svg { stroke: var(--accent); flex-shrink: 0; }
        .modal-subtitle {
            font-size: 0.875rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .modal-close {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--bg-primary);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            cursor: pointer;
            color: var(--text-muted);
            transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        }
        .modal-close:hover {
            background: var(--bg-card-hover);
            color: var(--text-primary);
            border-color: var(--border);
        }
        .modal-close:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* ========================================
           MODAL BODY / INPUT AREA
           ======================================== */
        .modal-body {
            padding: 1.5rem 1.75rem 1.75rem;
        }

        .modal-textarea {
            width: 100%;
            padding: 1rem;
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: 10px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: var(--text-primary);
            line-height: 1.6;
            resize: vertical;
            min-height: 140px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .modal-textarea::placeholder { color: var(--text-muted); }
        .modal-textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-dim);
        }

        .modal-divider {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1.25rem 0;
            color: var(--text-muted);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .modal-divider::before,
        .modal-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border-subtle);
        }

        /* ========================================
           FILE UPLOAD AREA
           ======================================== */
        .file-upload-area {
            border: 2px dashed var(--border);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease;
            position: relative;
        }
        .file-upload-area:hover,
        .file-upload-area:focus-visible,
        .file-upload-area.drag-over {
            border-color: var(--accent);
            background: var(--accent-dim);
        }
        .file-upload-area:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
        .file-upload-area input[type="file"] {
            position: absolute;
            inset: 0;
            opacity: 0;
            cursor: pointer;
            width: 100%;
            height: 100%;
        }
        .file-upload-area svg {
            stroke: var(--text-muted);
            margin-bottom: 0.75rem;
            display: block;
            margin-inline: auto;
            transition: stroke 0.2s ease;
        }
        .file-upload-area:hover svg,
        .file-upload-area.drag-over svg { stroke: var(--accent); }
        .file-upload-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 0.25rem;
        }
        .file-upload-link {
            color: var(--accent);
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .file-upload-hint {
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .file-upload-name {
            margin-top: 0.75rem;
            font-size: 0.82rem;
            color: var(--accent);
            font-weight: 600;
        }

        /* ========================================
           ANALYZE BUTTON
           ======================================== */
        .analyze-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            margin-top: 1.25rem;
            padding: 0.9rem 2rem;
            background: var(--gradient-accent);
            color: var(--white);
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: opacity 0.2s ease, transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
        }
        .analyze-btn:not(:disabled):hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(15, 118, 110, 0.35);
        }
        .analyze-btn:disabled {
            opacity: 0.45;
            cursor: not-allowed;
        }
        .analyze-btn:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* ========================================
           LOADING SKELETON
           ======================================== */
        @keyframes skeletonShimmer {
            0% { background-position: -400px 0; }
            100% { background-position: 400px 0; }
        }

        .skeleton-base {
            background: linear-gradient(
                90deg,
                var(--bg-secondary) 25%,
                var(--border-subtle) 50%,
                var(--bg-secondary) 75%
            );
            background-size: 400px 100%;
            animation: skeletonShimmer 1.4s ease infinite;
            border-radius: 6px;
        }

        .loading-skeleton {
            padding: 1rem 0;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        .skeleton-header {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }
        .skeleton-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            flex-shrink: 0;
            background: linear-gradient(
                90deg,
                var(--bg-secondary) 25%,
                var(--border-subtle) 50%,
                var(--bg-secondary) 75%
            );
            background-size: 400px 100%;
            animation: skeletonShimmer 1.4s ease infinite;
        }
        .skeleton-lines {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .skeleton-line {
            height: 14px;
            border-radius: 4px;
            background: linear-gradient(
                90deg,
                var(--bg-secondary) 25%,
                var(--border-subtle) 50%,
                var(--bg-secondary) 75%
            );
            background-size: 400px 100%;
            animation: skeletonShimmer 1.4s ease infinite;
        }
        .skeleton-line--wide { width: 70%; }
        .skeleton-line--medium { width: 45%; }
        .skeleton-block {
            height: 80px;
            border-radius: 8px;
            background: linear-gradient(
                90deg,
                var(--bg-secondary) 25%,
                var(--border-subtle) 50%,
                var(--bg-secondary) 75%
            );
            background-size: 400px 100%;
            animation: skeletonShimmer 1.4s ease infinite;
        }
        .skeleton-block--short { height: 48px; }

        /* ========================================
           ERROR MESSAGE
           ======================================== */
        .error-message {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            background: #fff5f5;
            border: 1px solid #fca5a5;
            border-radius: 10px;
            color: #b91c1c;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-top: 0.5rem;
        }
        .error-message svg { flex-shrink: 0; margin-top: 1px; }

        /* ========================================
           RESULTS CONTAINER
           ======================================== */
        .results-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            animation: resultsReveal 0.4s var(--ease-out) both;
        }
        @keyframes resultsReveal {
            from { opacity: 0; transform: translateY(12px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .results-section {
            padding: 1.25rem;
            background: var(--bg-primary);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
        }
        .results-section-title {
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 1rem;
        }

        /* ========================================
           FIT SCORE CIRCLE
           ======================================== */
        .fit-score-section { padding: 1.5rem; }
        .fit-score-wrapper {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .fit-score-circle {
            position: relative;
            width: 120px;
            height: 120px;
            flex-shrink: 0;
        }
        .fit-score-svg {
            width: 120px;
            height: 120px;
            transform: rotate(-90deg);
        }
        .fit-score-track {
            fill: none;
            stroke: var(--border-subtle);
            stroke-width: 8;
        }
        .fit-score-fill {
            fill: none;
            stroke-width: 8;
            stroke-linecap: round;
            stroke-dasharray: 326.73; /* 2 * PI * 52 */
            stroke-dashoffset: 326.73;
            transition: stroke-dashoffset 1s var(--ease-out), stroke 0.5s ease;
        }
        .fit-score-fill.score-high   { stroke: #16a34a; }
        .fit-score-fill.score-medium { stroke: #ca8a04; }
        .fit-score-fill.score-low    { stroke: #dc2626; }
        .fit-score-label {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .fit-score-number {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1;
        }
        .fit-score-text {
            font-size: 0.62rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-top: 2px;
        }
        .fit-score-meta { flex: 1; min-width: 180px; }
        .fit-score-meta .results-section-title { margin-bottom: 0.4rem; }
        .fit-summary {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.65;
        }

        /* ========================================
           SKILL TABLE / GAP TABLE
           ======================================== */
        .table-wrapper {
            overflow-x: auto;
            border-radius: 8px;
            border: 1px solid var(--border-subtle);
        }
        .skill-table,
        .gap-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.875rem;
        }
        .skill-table th,
        .gap-table th {
            padding: 0.65rem 1rem;
            text-align: left;
            font-family: var(--font-heading);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            background: var(--bg-card);
            border-bottom: 1px solid var(--border-subtle);
            white-space: nowrap;
        }
        .skill-table td,
        .gap-table td {
            padding: 0.75rem 1rem;
            color: var(--text-secondary);
            line-height: 1.5;
            border-bottom: 1px solid var(--border-subtle);
            vertical-align: top;
        }
        .skill-table tr:last-child td,
        .gap-table tr:last-child td { border-bottom: none; }
        .skill-table tr:hover td,
        .gap-table tr:hover td { background: var(--bg-card-hover); }
        .skill-table td:first-child,
        .gap-table td:first-child {
            font-weight: 500;
            color: var(--text-primary);
            white-space: nowrap;
        }

        /* ========================================
           STRENGTH / SEVERITY BADGES
           ======================================== */
        .strength-badge,
        .severity-badge {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 0.2rem 0.55rem;
            border-radius: 4px;
            text-transform: capitalize;
            white-space: nowrap;
        }
        /* Strength */
        .strength-badge--strong   { background: #dcfce7; color: #166534; }
        .strength-badge--moderate { background: #fef9c3; color: #854d0e; }
        .strength-badge--basic    { background: #dbeafe; color: #1e40af; }
        /* Severity */
        .severity-badge--critical { background: #fee2e2; color: #991b1b; }
        .severity-badge--moderate { background: #fef9c3; color: #854d0e; }
        .severity-badge--minor    { background: #f0fdf4; color: #166534; }

        /* ========================================
           EXPERIENCE MATCH ROW
           ======================================== */
        .experience-match-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
        }
        .experience-match-cell {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 0.85rem 1rem;
            text-align: center;
        }
        .experience-match-label {
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 0.35rem;
        }
        .experience-match-value {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
        }
        .experience-match-verdict {
            display: inline-block;
            margin-top: 0.3rem;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.15rem 0.5rem;
            border-radius: 4px;
        }
        .experience-match-verdict--pass { background: #dcfce7; color: #166534; }
        .experience-match-verdict--partial { background: #fef9c3; color: #854d0e; }
        .experience-match-verdict--fail { background: #fee2e2; color: #991b1b; }

        /* ========================================
           HIGHLIGHTS LIST
           ======================================== */
        .highlights-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .highlights-list li {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            padding-left: 1.4rem;
            position: relative;
        }
        .highlights-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.55rem;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
        }

        /* ========================================
           RECOMMENDATION BOX
           ======================================== */
        .recommendation-box {
            padding: 1.25rem 1.5rem;
            background: var(--accent-dim);
            border: 1px solid rgba(15, 118, 110, 0.2);
            border-left: 4px solid var(--accent);
            border-radius: 10px;
        }
        .recommendation-label {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-family: var(--font-heading);
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.6rem;
        }
        .recommendation-label svg { stroke: var(--accent); }
        .recommendation-box p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ========================================
           ANALYZE ANOTHER BUTTON
           ======================================== */
        .analyze-another-btn {
            display: block;
            width: 100%;
            padding: 0.75rem;
            background: transparent;
            color: var(--text-muted);
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
            text-align: center;
        }
        .analyze-another-btn:hover {
            background: var(--bg-primary);
            color: var(--text-primary);
            border-color: var(--border);
        }
        .analyze-another-btn:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* ========================================
           REDUCED MOTION
           ======================================== */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
            .reveal, .reveal-scale {
                opacity: 1;
                transform: none;
            }
            #geo-canvas { display: none; }
        }

        /* ========================================
           RESPONSIVE
           ======================================== */
        @media (max-width: 1024px) {
            .exp-card {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
            .skills-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .container { padding: 0 1.25rem; }
            section { padding: 5rem 0; }

            .nav-links { display: none; }
            .nav-toggle { display: flex; }

            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(248, 249, 250, 0.98);
                padding: 1.5rem 2rem;
                gap: 1.25rem;
                border-bottom: 1px solid var(--border-subtle);
            }

            .hero { min-height: auto; padding: 8rem 0 5rem; }

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

            .hero-avatar-wrapper {
                order: -1;
            }

            .hero-avatar {
                width: 160px;
                height: 160px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .skills-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .hero-cta-row {
                flex-wrap: wrap;
            }
            .hero-cta-buttons {
                flex-direction: column;
                width: 100%;
            }
            .btn-secondary, .btn-genai {
                justify-content: center;
                width: 100%;
            }

            .footer-content {
                flex-direction: column;
                align-items: flex-start;
            }

            /* Modal mobile adjustments */
            .modal-overlay {
                padding: 0.5rem;
                align-items: flex-end;
            }
            .modal-container {
                max-height: 92vh;
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
                border-radius: 16px 16px 0 0;
            }
            .modal-header {
                padding: 1.25rem 1.25rem 1rem;
            }
            .modal-body {
                padding: 1.25rem;
            }
            .fit-score-wrapper {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.25rem;
            }
            .experience-match-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 375px) {
            .hero-name {
                font-size: 2.5rem;
            }
        }
