
        :root {
            /* Subtle Section Transitions */
            --bg-hero: #F7F5F1;
            --bg-cv: #ffffff; 
            --bg-footer: #e0e0e0;
            
            --text-main: #1a1a1a;
            --accent-green: #d1f3a5;
            
            /* Section 2 Neumorphism Colors adjusted for #ebebeb */
            --cv-text: #333333;
            --cv-light-shadow: #ffffff;
            --cv-dark-shadow: #c9c9c9;
            
            /* Section 3 Footer Colors */
            --footer-text: #0d0d0d;
        }

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

        html, body {
            overflow-x: hidden;
            max-width: 100vw;
            width: 100%;
        }

        body {
            background-color: var(--bg-hero);
            transition: background-color 0.5s ease;
            font-family: 'Outfit', sans-serif;
        }

        /* --- Scroll Reveal Animations --- */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Delay stagger utilities */
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }

        section {
            min-height: 100vh;
            width: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        /* =========================================
           SECTION 1: HERO
           ========================================= */
        .hero-sec {
            background-color: transparent;
            color: var(--text-main);
            padding: 2rem 4vw;
            justify-content: flex-start;
        }

        .hero-header {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-bottom: 8vh;
            width: 100%;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .hero-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 500;
            font-size: 1.25rem;
        }

        .hero-logo-mark {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--text-main);
        }

        .hero-logo-mark img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-nav {
            display: flex;
            align-items: center;
        }

        /* Pill Navigation Header */
        .pill-nav {
            background-color: #ffffff;
            border-radius: 40px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            border: 1px solid rgba(0,0,0,0.05);
            width: fit-content;
        }
        
        .pill-nav a {
            text-decoration: none;
            color: var(--text-main);
            font-size: 1.3rem;
            padding: 0.8rem 1.5rem;
            font-weight: 500;
            padding: 0.6rem 1.25rem;
            border-radius: 30px;
        }

        .pill-nav .nav-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: -0.5rem;
        }
        
        .pill-nav .nav-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--text-main);
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .pill-nav a.contact-btn {
            background-color: var(--accent-green, #d1f3a5);
            font-weight: 500;
        }

        /* Professional Traffic Status */
        .traffic-status {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-main);
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding-bottom: 2px;
            border-bottom: 1.5px solid var(--text-main);
        }

        .traffic-status-value {
            color: #555;
            font-weight: 500;
        }

        .hero-main {
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex-grow: 1;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-text {
            font-size: clamp(2rem, 3.3vw, 3.5rem); 
            line-height: 1.6;
            font-weight: 400;
            letter-spacing: -0.02em;
            max-width: 800px;
            text-align: left;
        }

        @keyframes gradientPan {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .inline-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.4em;
            border: 1px solid rgba(255,255,255,0.4);
            border-radius: 8px;
            padding: 0 0.5em;
            height: 1.3em;
            vertical-align: middle;
            margin: 0 0.1em;
            white-space: nowrap;
            background: linear-gradient(270deg, #DCE8C8, #C8DDB8, #B8CDAA, #E7DDBD, #DCE8C8);
            background-size: 400% 400%;
            animation: gradientPan 6s ease infinite;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            color: var(--text-main);
        }

        .inline-tag svg {
            width: 0.9em;
            height: 0.9em;
            stroke: var(--text-main);
            stroke-width: 1;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .hero-cta {
            margin-top: 5vh;
        }

        .hero-btn {
            background-color: #1f1d1d;
            color: white;
            border: none;
            padding: 1rem 1.75rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-family: inherit;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .hero-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .hero-btn svg {
            width: 20px;
            height: 20px;
            stroke: white;
            fill: none;
            stroke-width: 2;
        }

        /* =========================================
           SECTION 2: MINIMALIST CV 
           ========================================= */
        .cv-sec {
            background-color: transparent;
            color: #1a1a1a;
            padding: 8rem 4vw;
            display: flex;
            justify-content: center;
        }

        .cv-container {
            max-width: 1400px;
            width: 100%;
            display: flex;
            gap: 6vw;
        }

        .cv-sidebar {
            width: 250px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-shrink: 0;
        }
        
        .cv-sidebar-top h2 {
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }
        
        .cv-sidebar-sub {
            font-size: 1.3rem;
            padding: 0.8rem 1.5rem;
            color: #1a1a1a;
            line-height: 1.6;
        }
        
        .cv-sidebar-sub span {
            color: #888;
        }
        
        .cv-sidebar-nav {
            display: flex;
            gap: 0.6rem;
            margin-top: 4rem;
        }
        
        .cv-pill {
            padding: 0.5rem 1.25rem;
            border-radius: 30px;
            border: 1px solid #e0e0e0;
            font-size: 0.9rem;
            text-decoration: none;
            color: #1a1a1a;
            transition: all 0.2s;
        }
        
        .cv-pill.active {
            background-color: #1a1a1a;
            color: #ffffff;
            border-color: #1a1a1a;
        }
        
        .cv-content {
            flex-grow: 1;
            max-width: 950px;
        }
        
        .cv-about-header {
            font-size: 0.75rem;
            color: #888;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        
        .cv-about-text {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            font-weight: 400;
            line-height: 1.4;
            color: #1a1a1a;
            margin-bottom: 3.5rem;
            letter-spacing: -0.01em;
        }
        
        .cv-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
        }
        
        .cv-card {
            border-radius: 16px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            min-height: 220px;
        }
        
        .beige-card {
            background-color: #f5f3ef;
        }
        
        .outline-card {
            background-color: #ffffff;
            border: 1px solid #eaeaea;
        }
        
        .lottie-container {
            /* Desktop uses default layout */
        }
        
        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .cv-card-row {
            display: flex;
            gap: 1rem;
        }
        
        .cv-card-col {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            flex: 1;
        }
        
        .cv-card-col.full-width {
            flex: 100%;
        }
        
        .cv-card-col span {
            font-size: 0.75rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
        }
        
        .cv-card-col strong {
            font-size: 1.3rem;
            padding: 0.8rem 1.5rem;
            font-weight: 500;
            color: #1a1a1a;
            line-height: 1.4;
        }
        
        .accent-red {
            color: #d9381e !important;
        }

        /* =========================================
           SECTION 3: BRUTALIST FOOTER
           ========================================= */
        .footer-sec {
            background-color: transparent;
            color: var(--footer-text);
            padding: 3rem 4vw;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-transform: uppercase;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: -0.02em;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-top-left { font-size: 1.5rem; font-weight: 700; letter-spacing: -1px; }
        
        .footer-top-right { 
            display: flex; 
            gap: 2rem; 
            font-size: 0.9rem; 
            align-items: center;
        }
        
        .footer-top-right .traffic-status {
            color: var(--footer-text);
            border-bottom-color: var(--footer-text);
        }
        
        .footer-top-right .traffic-status-value {
            color: var(--footer-text);
            opacity: 0.7;
        }

        .footer-middle {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            margin: 6rem 0;
        }

        .footer-huge-text {
            font-size: clamp(3rem, 7.5vw, 8vw); 
            line-height: 1;
            font-weight: 900;
            letter-spacing: -0.05em;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-transform: uppercase;
            gap: 1vw;
        }

        .footer-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5vw;
            flex-wrap: wrap; 
        }

        .footer-svg-asterisk { width: 7vw; height: 7vw; min-width: 45px; min-height: 45px; margin: 0 0.5vw; }
        .footer-svg-oval { width: 14vw; height: 7vw; min-width: 90px; min-height: 45px; margin: 0 0.5vw; }
        .footer-svg-arrow { width: 7vw; height: 7vw; min-width: 45px; min-height: 45px; margin: 0 0.5vw; }
        .footer-svg-copyright { width: 7vw; height: 7vw; min-width: 45px; min-height: 45px; margin: 0 0.5vw; }

        .footer-svg-oval text {
            font-size: 45px;
        }

        .footer-brand {
            font-size: clamp(1.5rem, 3vw, 3rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-top: 3rem;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: clamp(0.75rem, 1.2vw, 0.9rem);
            font-weight: 500;
            line-height: 1.5;
            text-transform: uppercase;
            border-top: 2px solid rgba(0,0,0,0.1);
            padding-top: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom-left {
            max-width: 600px;
        }

        .footer-bottom-right {
            font-weight: 700;
            opacity: 0.8;
        }

        /* =========================================
           RESPONSIVE MEDIA QUERIES
           ========================================= */
        @media (max-width: 1024px) {
            .cv-container {
                flex-direction: column;
            }
            .cv-sidebar {
                width: 100%;
                margin-bottom: 3rem;
            }
            .cv-sidebar-nav {
                margin-top: 2rem;
            }
        }

        /* Mobile Layout Optimizations */
        @media (max-width: 768px) {
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }
            .footer-bottom-right {
                margin-top: 1rem;
            }
            .bento-grid { grid-template-columns: 1fr !important; }
            .bento-card, .bento-grid > div { grid-column: 1 !important; grid-row: auto !important; padding-left: 0 !important; }
            
            .cv-sidebar {
                width: 100% !important;
            }
            .cv-sidebar-nav {
                flex-direction: row !important;
                gap: 1.5rem !important;
                justify-content: flex-start;
            }
            .hero-text {
                font-size: 2.2rem !important;
                text-align: left !important;
            }
            .lottie-container {
                display: flex !important;
                justify-content: center !important;
                width: 100% !important;
            }
            .hero-cta {
                display: flex !important;
                justify-content: center !important;
                width: 100% !important;
            }
            .pill-nav {
                margin: 0 0 0 auto;
            }
            .hero-header {
                justify-content: flex-end !important;
            }
            .bento-experience-list {
                align-items: center;
                text-align: center;
            }
            .exp-item {
                padding-left: 0;
            }
            .exp-item::before {
                display: none !important;
            }
            .bento-card-header {
                text-align: center;
                justify-content: center;
                margin: 0 auto;
                width: 100% !important;
            }
            .footer-top {
                justify-content: center;
                text-align: center;
            }
            .inline-tag {
                font-size: 0.85em;
            }
            .nav-dot {
                display: none !important;
            }
            .cv-two-col {
                grid-template-columns: 1fr !important;
            }
            .cv-cards {
                grid-template-columns: 1fr;
            }
            .cv-card {
                min-height: auto;
            }
            dotlottie-wc {
                margin: 0 auto !important;
                display: block !important;
            }
        }

        /* Bento Grid Styles */
        .bento-header {
            margin-bottom: 4rem;
            max-width: 900px;
        }
        .bento-header-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: #1a1a1a;
            font-family: 'Outfit', sans-serif;
            letter-spacing: -0.02em;
        }
        .bento-header-subtitle {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 700px;
        }
        .bento-header-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .bento-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #f0f0f0;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #333;
            border: 1px solid rgba(0,0,0,0.05);
        }
        .status-dot {
            width: 8px;
            height: 8px;
            background-color: #34c759;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.2);
            animation: pulse-dot 2s infinite;
        }
        
        @keyframes pulse-dot {
            0% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(52, 199, 89, 0); }
            100% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
        }

        .bento-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1.5fr;
            gap: 1.5rem;
        }

        .bento-card {
            background: transparent;
            border-radius: 1.5rem;
            padding: 1.5rem;
            position: relative;
            border: 1.5px solid rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: none;
        }

        .bento-card-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: #666;
            font-weight: 500;
            margin-bottom: 1.5rem;
            background: transparent;
            padding: 0;
            border-radius: 0;
            width: fit-content;
        }

        .bento-tall {
            grid-column: span 1;
            grid-row: span 2;
        }

        .bento-wide {
            grid-column: span 2;
            grid-row: span 1;
        }

        /* Internal Card Styles */
        .bento-experience-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
            margin-top: 1rem;
        }
        .bento-experience-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
            margin-top: 1rem;
        }
        .exp-item {
            position: relative;
            padding-left: 1.5rem;
        }
        .exp-item::before {
            content: '';
            position: absolute;
            left: 1px;
            top: 6px;
            width: 9px;
            height: 9px;
            background: #1a1a1a;
            border-radius: 50%;
        }
        .exp-year {
            font-size: 0.75rem;
            color: #888;
            margin-bottom: 0.3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .exp-company {
            font-weight: 600;
            font-size: 1.1rem;
            color: #1a1a1a;
        }
        .exp-role {
            font-size: 1.3rem;
            padding: 0.8rem 1.5rem;
            color: #666;
        }

        .bento-softskills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: auto;
            margin-bottom: auto;
        }
        .bento-softskills span {
            background-color: transparent;
            color: #1a1a1a;
            border: 1px solid rgba(0,0,0,0.1);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 1.3rem;
            padding: 0.8rem 1.5rem;
            font-weight: 500;
        }

        @media (max-width: 1024px) {
            .bento-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1.5fr;
            gap: 1.5rem;
        }
            .bento-wide { grid-column: span 2; }
            .bento-tall { grid-row: span 2; }
        }
        @media (max-width: 768px) {
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }
            .footer-bottom-right {
                margin-top: 1rem;
            }
            .bento-grid { grid-template-columns: 1fr; }
            .bento-card, .bento-grid > div { grid-column: 1 !important; grid-row: auto !important; padding-left: 0 !important; }
        }
            .bento-wide, .bento-tall { grid-column: span 2; grid-row: span 1; }
        }
        @media (max-width: 480px) {
            .bento-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1.5fr;
            gap: 1.5rem;
        }
            .bento-wide, .bento-tall { grid-column: span 1; }
        }
