/* -------------------------------------------------------------------------- */
/*                               RESET & VARS                                 */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                               Z-INDEX REGISTRY                             */
/* -------------------------------------------------------------------------- */
/*
   9999: .cursor, .cursor-follower (Topmost)
   100:  .navbar (Sticky navigation)
   16:   .card-header::after
   15:   .card-header::before
   10:   .card-face.front, .card-content
   2:    #id-card (Physics body)
   1:    #lanyard, .card-face.back, .hero-content
   0:    #id-card-container (Physics container)
   -1:   #bg-canvas (Fixed background)
*/

:root {
    /* Palette Premium sombre */
    --bg-color: #030407;
    --bg-secondary: #0a0f1c;
    --text-primary: #ecf0f1;
    --text-secondary: #94a3b8;

    /* Accents */
    --accent-primary: #3b82f6;
    /* Bleu électrique */
    --accent-secondary: #8b5cf6;
    /* Violet */
    --accent-glow: rgba(59, 130, 246, 0.5);
    --gold: #fbbf24;
    /* Touche finance */

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);

    /* Spacing */
    --section-spacing: 120px;
    --container-width: 1200px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* -------------------------------------------------------------------------- */
/*                               CUSTOM CURSOR                                */
/* -------------------------------------------------------------------------- */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    /* Let interactions pass through if needed, but we track mouse on window */
}

.cursor,
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-secondary);
    opacity: 0.5;
    transition: width 0.3s, height 0.3s, background 0.3s, transform 0.15s ease-out;
}

body.hover-effect .cursor-follower {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent-primary);
}


/* -------------------------------------------------------------------------- */
/*                               ID CARD                                      */
/* -------------------------------------------------------------------------- */
#id-card-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200vh; /* Extended for scrolling */
    z-index: 0;
    pointer-events: none;
    overflow: visible;
    perspective: 1000px; /* Enable 3D space */
}

#lanyard {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#id-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: 230px;
    height: 350px;
    
    /* Container only handles 3D transform */
    transform-style: preserve-3d;
    will-change: transform;
    cursor: grab;
    z-index: 2;
}

#id-card:active {
    cursor: grabbing;
}

/* --- 3D LAYER STACK (The Thickness) --- */
.card-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    /* Gradient matching Thomas-Lamotte text */
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    border: 1px solid rgba(139, 92, 246, 0.1);
    transform: translateZ(var(--z));
    pointer-events: none;
}

/* FRONT FACE (Glass Content) */
.glass-face {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    
    /* Glassmorphism */
    background: rgba(10, 15, 25, 0.85); /* Slightly more opaque to hide back */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    /* Gradient Border Effect */
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 
        inset 0 0 20px rgba(139, 92, 246, 0.05),
        inset 1px 1px 0 rgba(255, 255, 255, 0.15);
        
    z-index: 10;
    backface-visibility: hidden; /* Important for flip */
    
    display: flex;
    flex-direction: column;
    overflow: hidden;
    pointer-events: auto;
}

.glass-face.front {
    transform: translateZ(0px);
}

.glass-face.back {
    transform: translateZ(-6px) rotateY(180deg); /* Behind the stack and flipped */
    display: flex; /* Re-declare flex for the back */
}

/* Shine effect on Glass Face */
.glass-face::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 40%
    );
    pointer-events: none;
}

/* --- LAYOUT UPDATES --- */
.header-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}






/* Attachment point at top of card */
.card-attachment {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #1e293b 0%, #0f172a 70%);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    box-shadow:
        0 0 10px rgba(139, 92, 246, 0.5), /* Violet glow */
        inset 0 0 5px rgba(59, 130, 246, 0.3);
    z-index: 15;
}

.card-attachment::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
}

.card-header {
    padding: 25px 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-role {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    font-weight: 700;
}

.id-number {
    font-family: 'Courier New', monospace;
    font-size: 0.6rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.card-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: text-shadow 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.card-logo:hover {
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.8), 0 0 30px rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}

.card-body {
    padding: 30px 20px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Terminal Icon - Glassy Variant */
.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03); /* Very subtle fill */
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent-primary);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-20deg) translateX(-150%);
    animation: icon-shine 4s infinite 2s;
}

@keyframes shine {
    to { background-position: 200% center; }
}

@keyframes icon-shine {
    to { transform: skewX(-20deg) translateX(150%); }
}

/* Status Pill */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
    animation: pulse 2s infinite;
}

/* Tech Stack Grid */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 160px;
}

.tech-stack-grid i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
    text-align: center;
    cursor: pointer;
}

.tech-stack-grid i:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.2);
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}


/* --- BACK FACE CONTENT STYLES --- */
.qr-placeholder {
    width: 120px;
    height: 120px;
    background: white;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--bg-color);
}

.contact-lines p {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: center;
    font-weight: 500;
}


.card-footer {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 0 24px 24px;
}

.barcode {
    width: 100px;
    height: 20px;
    background: repeating-linear-gradient(90deg,
            var(--text-secondary) 0px,
            var(--text-secondary) 2px,
            transparent 2px,
            transparent 4px);
    opacity: 0.5;
}

.id-number {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    opacity: 0.5;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(3, 4, 7, 0.85);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 15px 40px;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo .dot {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-contact {
    padding: 8px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    background: var(--glass-bg);
}

.btn-contact:hover {
    border-color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.1);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* -------------------------------------------------------------------------- */
/*                               HERO SECTION                                 */
/* -------------------------------------------------------------------------- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    pointer-events: none;
    /* Allow clicks to pass through to canvas/card */
}

/* Abstract Background Animation - Removed for better canvas integration */


.hero-content {
    z-index: 1;
    position: relative;
    max-width: 650px;
    margin: 0;
    margin-left: 15vw;
    /* Left align with offset */
    pointer-events: auto;
    /* Restore interaction for text/buttons */
}

.tagline {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
    padding: 5px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 2px;
    margin: 0 auto;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* -------------------------------------------------------------------------- */
/*                               COMMON SECTION STYLES                        */
/* -------------------------------------------------------------------------- */
.section {
    padding: var(--section-spacing) 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title .line {
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    flex-grow: 1;
    max-width: 200px;
}

/* -------------------------------------------------------------------------- */
/*                               PROJECTS                                     */
/* -------------------------------------------------------------------------- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.project-card {
    background: rgba(10, 15, 28, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(10, 15, 28, 0.8);
}

.project-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    background: linear-gradient(to right, rgba(10, 15, 28, 0.8), rgba(14, 22, 41, 0.8));
}

.project-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-primary);
    margin-bottom: 10px;
    display: block;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.project-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tech-stack span {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 100px;
    color: var(--text-secondary);
}

.icon-link {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.icon-link:hover {
    color: var(--accent-primary);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-weight: 600;
}

.finance-gradient {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.1));
    height: 100%;
    width: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent-primary);
    min-height: 200px;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    border: 1px solid var(--text-secondary);
    padding: 12px 24px;
    border-radius: 6px;
    color: var(--text-primary);
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* -------------------------------------------------------------------------- */
/*                               EXPERIENCES (TIMELINE)                       */
/* -------------------------------------------------------------------------- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--glass-border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background: var(--bg-color);
    border: 2px solid var(--accent-primary);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -8px;
}

.timeline-content {
    padding: 24px;
    background: rgba(10, 15, 28, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: transform 0.3s;
}

.timeline-content:hover {
    transform: scale(1.02);
    border-color: var(--accent-secondary);
}

.timeline-content .date {
    font-size: 0.85rem;
    color: var(--accent-secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.timeline-content h4 {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* -------------------------------------------------------------------------- */
/*                               SKILLS                                       */
/* -------------------------------------------------------------------------- */
.skills-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.skill-category {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(10, 15, 28, 0) 100%);
    padding: 30px;
    border-radius: 16px;
    border-top: 1px solid var(--glass-border);
}

.skill-category h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.skill-category h3 i {
    color: var(--accent-primary);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.tag.high {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
}

.tag.outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

/* -------------------------------------------------------------------------- */
/*                               CONTACT & FOOTER                             */
/* -------------------------------------------------------------------------- */
.contact-section {
    /* Removed solid gradient to let canvas show through */
    padding-bottom: 60px;
    position: relative;
}

.contact-container {
    text-align: center;
    max-width: 700px;
}

.contact-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-link {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.contact-link:hover {
    color: var(--accent-primary);
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-buttons .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
}

footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    text-align: center;
    color: var(--text-secondary);
}

.small {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 10px;
}

/* -------------------------------------------------------------------------- */
/*                               RESPONSIVE                                   */
/* -------------------------------------------------------------------------- */
@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .project-card.featured {
        grid-template-columns: 1fr;
    }

    .timeline::after {
        left: 24px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
    }

    .timeline-item::after {
        left: 16px;
    }

    .right {
        left: 0%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(3, 4, 7, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 1px solid var(--glass-border);
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .menu-toggle {
        display: block;
        color: var(--text-primary);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }
}