/* ==========================================================================
   RESET & VARIABLES
   ========================================================================== */
:root {
    --bg-base: #050505;
    --surface-glass: rgba(255, 255, 255, 0.03);
    --surface-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-muted: #a1a1aa;
    --accent: #10b981; 
    --accent-hover: #059669;
    --gradient-1: #4f46e5;
    --gradient-2: #ec4899;
    --gradient-3: #10b981;
    --bezier-premium: cubic-bezier(0.23, 1, 0.32, 1);
}

:root[data-theme="light"] {
    --bg-base: #f4f4f5;
    --surface-glass: rgba(255, 255, 255, 0.6) !important; 
    --surface-border: rgba(0, 0, 0, 0.1) !important;
    --text-primary: #18181b;
    --text-muted: #52525b;
    --accent: #059669;
}

* { 
    margin: 0;
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    background-color: var(--bg-base); 
    color: var(--text-primary);
    font-family: 'Inter', sans-serif; 
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s var(--bezier-premium), color 0.5s var(--bezier-premium);
}

/* --- PRELOADER STYLES --- */
.preloader {
    position: fixed; /* Locks it to the screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* 100% of the Viewport Height */
    background-color: #0a0a0a; /* A nice dark background */
    z-index: 9999; /* Makes sure it sits on top of EVERYTHING */
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-text {
    font-family: 'JetBrains Mono', monospace; 
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    overflow: hidden; 
}

.preloader-text .letter {
    transform: translateY(100%); 
    opacity: 0;
    color: var(--accent);
}

.tech-badges .fa-brands {
    font-size: 1.3rem;
}

/* Typography & Utils */
h1, h2, h3 { 
    font-weight: 600; 
    line-height: 1.1; 
    letter-spacing: -0.02em; 
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4.5rem); 
}

h2 { 
    font-size: clamp(2rem, 4vw, 3rem); 
}

h3 { 
    font-size: clamp(1.25rem, 2vw, 1.5rem); 
}

.mono-label {
    font-family: 'JetBrains Mono', monospace; 
    font-size: 0.75rem;
    text-transform: uppercase; 
    letter-spacing: 0.05em;
    color: var(--text-muted); 
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
}

.text-accent { 
    color: var(--accent); 
}

.text-muted { 
    color: var(--text-muted); 
}

.text-sm { 
    font-size: 0.875rem; 
}

.text-xs { 
    font-size: 0.75rem; 
}

.mb-1 { 
    margin-bottom: 0.5rem; 
}

 .mb-2 { 
    margin-bottom: 1rem; 
}

.mb-3 { 
    margin-bottom: 2rem; 
}

.mb-4 { 
    margin-bottom: 3rem; 
}

.mt-2 { 
    margin-top: 1rem; 
} 

.w-100 { 
    width: 100%; 
}

.text-center { 
    text-align: center; 
}

a { 
    color: inherit; 
    text-decoration: none; 
}

/* Global Textures */
.noise-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh;
    pointer-events: none; 
    z-index: 9999; 
    opacity: 0.04; 
    mix-blend-mode: overlay;
}

.gradient-mesh {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100vh;
    overflow: hidden; 
    z-index: -1; 
    opacity: 0.4; 
    filter: blur(100px);
}

.mesh-blob { 
    position: absolute; 
    border-radius: 50%; 
    animation: float 20s infinite ease-in-out alternate; 
}

.blob-1 { 
    top: -10%; 
    left: -10%; 
    width: 50vw; 
    height: 50vw; 
    background: var(--gradient-1); 
}

.blob-2 { 
    top: 20%; 
    right: -20%; 
    width: 60vw; 
    height: 60vw; 
    background: var(--gradient-2); 
    animation-delay: -5s; 
}

.blob-3 { 
    bottom: -20%; 
    left: 20%; 
    width: 40vw; 
    height: 40vw; 
    background: var(--gradient-3); 
    animation-delay: -10s; 
}

@keyframes float { 

    0% { 
        transform: translate(0, 0) scale(1); 
    }
    
    100% {
         transform: translate(5%, 10%) scale(1.1); 
        } 
    }

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 1.5rem; 
}

.section-padding { 
    padding: 6rem 0; 
}

.glass-panel {
    background: var(--surface-glass); 
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-radius: 16px; 
    padding: 1.5rem;
}

/* Buttons */
button, .btn-primary, .btn-secondary {
    font-family: inherit; 
    cursor: pointer; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 0.5rem;
    padding: 0.75rem 1.5rem; 
    border-radius: 8px; 
    font-weight: 500; 
    font-size: 0.875rem; 
    transition: all 0.4s var(--bezier-premium); 
    border: none;
}

.btn-primary { 
    background: var(--text-primary); 
    color: var(--bg-base); 
}

.btn-primary:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
}

.btn-secondary { 
    background: var(--surface-glass); 
    color: var(--text-primary); 
    border: 1px solid var(--surface-border); 
}

.btn-secondary:hover { 
    background: var(--bg-base); 
    border-color: var(--accent-hover); 
}

.btn-sm { 
    padding: 0.5rem 1rem; 
    font-size: 0.75rem; 
}

/* I might get rid of this */
.lucide { 
    width: 24px; 
    height: 24px; 
    display: inline-block; 
}

.settings-trigger .lucide, .burger-menu .lucide { 
    width: 20px; 
    height: 20px; 
}

/* Navigation */
.navbar { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 100; 
    padding: 1.5rem; 
    pointer-events: none; 
}

.nav-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    pointer-events: auto; 
}

.brand-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

.brand-logo { 
    font-weight: 700; 
    font-size: 1.25rem; 
    letter-spacing: -0.05em; 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    line-height: 1;
}

.brand-logo span { 
    color: var(--accent); 
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo ion-icon {
    font-size: 1.4rem;
    display: block;
}


.nav-links { 
    display: flex; 
    gap: 2rem; 
    background: var(--surface-glass); 
    border: 1px solid var(--surface-border); 
    padding: 0.5rem 1.5rem; 
    border-radius: 100px; 
    backdrop-filter: blur(12px); 
}

.nav-link { 
    font-size: 0.875rem; 
    color: var(--text-muted); 
    transition: color 0.3s ease; 
}

.nav-link:hover { 
    color: var(--text-primary);
}

.settings-trigger, .burger-menu {
    background: var(--surface-glass); 
    border: 1px solid var(--surface-border); 
    color: var(--text-primary);
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    backdrop-filter: blur(12px);
}

.wa-icon {
    font-size: 2.5rem;
}
.settings-trigger:hover { 
    transform: rotate(45deg); 
}

.burger-menu { 
    display: none; 
}


@media (max-width: 768px) { 

    .desktop-only { 
        display: none; 
    } .burger-menu { 
        display: flex; 
    } 
}

/* FIXED DRAWER PHYSICS */
.mobile-drawer {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 300px; 
    height: 100vh;
    background: var(--bg-base); 
    border-right: 1px solid var(--surface-border);
    z-index: 1000; 
    padding: 2rem; 
    display: flex; 
    flex-direction: column;
    transform: translateX(-100%); 
    transition: transform 0.6s var(--bezier-premium);
}

.mobile-drawer.active { 
    transform: translateX(0); 
}

.drawer-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 3rem; 
}

.close-drawer { 
    background: none; 
    border: none; 
    color: var(--text-primary); 
    cursor: pointer; 
}

.drawer-links { 
    display: none; 
    flex-direction: column; 
    gap: 1.5rem; 
}

@media (max-width: 768px) {

    .drawer-links {
        display: flex;
    }
}

.drawer-link { 
    font-size: 1.5rem; 
    font-weight: 500; 
    border-bottom: 1px solid var(--surface-border); 
    padding-bottom: 0.5rem; 
}

.drawer-overlay, .modal-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh;
    background: rgba(0,0,0,0.5); 
    backdrop-filter: blur(4px); 
    z-index: 999;
    opacity: 0; 
    pointer-events: none; 
    transition: opacity 0.4s ease;
}

.drawer-overlay.active, .modal-overlay.active { 
    opacity: 1; 
    pointer-events: auto; 
}

/* Modals */
.settings-modal-wrapper, .contact-modal-wrapper {
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -45%) scale(0.95);
    opacity: 0; 
    pointer-events: none; 
    z-index: 1001; 
    transition: all 0.5s var(--bezier-premium);
}
.settings-modal-wrapper.active, .contact-modal-wrapper.active { 
    transform: translate(-50%, -50%) scale(1); 
    opacity: 1; 
    pointer-events: auto; 
}

.settings-card, .contact-card {
    background: #18181b; 
    color: #fff; 
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; 
    padding: 1.5rem; 
    width: 340px; 
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.settings-header { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    margin-bottom: 0.5rem; 
}

.settings-desc { 
    font-size: 0.875rem; 
    color: var(--text-muted) !important;
    margin-bottom: 1.5rem; 
}

.settings-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-top: 1px solid var(--surface-border) !important;
    border-bottom: 1px solid var(--surface-border) !important;
    padding: 1rem 0; 
}

.row-label { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    font-size: 0.875rem; 
    font-weight: 500; 
}

.theme-toggle-btn { 
    background: var(--surface-glass) !important;
    border: 1px solid var(--surface-border) !important;
    color: var(--text-primary) !important; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    padding: 0.4rem 0.75rem; 
    border-radius: 6px; 
}

.hidden {
    display: none;
}

.theme-icon {
    transition: 1000ms;
}

.theme-toggle-btn:hover {
    background: var(--surface-border) !important;
}

.settings-footer { 
    display: flex; 
    justify-content: flex-end; 
    margin-top: 1.5rem; 
}

/* Contact Form Modal */
.contact-card { 
    width: 400px; 
    position: relative; 
    background: var(--bg-base); 
    color: var(--text-primary); 
    border-color: var(--surface-border); 
}

@media(max-width: 450px) { 

    .contact-card { 
        width: 90vw; 
    } 
}

.close-modal { 
    position: absolute; 
    top: 1rem; 
    right: 1rem; 
    background: none; 
    border: none; 
    color: var(--text-muted); 
    cursor: pointer; 
}

.wa-link { 
    color: var(--accent); 
    text-decoration: underline; 
}

.input-group { 
    margin-bottom: 1rem; 
    display: flex; 
    flex-direction: column; 
    gap: 0.25rem; 
}


.input-group label { 
    font-size: 0.75rem; 
    font-weight: 500; 
    color: var(--text-muted); 
}

.input-group input, .input-group textarea { 
    background: var(--surface-glass); 
    border: 1px solid var(--surface-border); 
    color: var(--text-primary); 
    padding: 0.75rem; 
    border-radius: 6px; 
    font-family: inherit; 
    outline: none; 
    transition: border-color 0.3s ease; 
}

.input-group input:focus, .input-group textarea:focus { 
    border-color: var(--accent); 
}

/* Layout Sections */
.hero { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    padding-top: 5rem; 
}

.hero-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center; 
}

.highlight { 
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
     -webkit-background-clip: text; 
     -webkit-text-fill-color: transparent; 
    }

.hero-sub { 
    color: var(--text-muted); 
    font-size: 1.125rem; 
    margin: 1.5rem 0 2rem; 
    max-width: 480px; 
}

.hero-actions { 
    display: flex; 
    gap: 1rem; 
}

.hero-visual { 
    position: relative; 
}

.profile-card { 
    padding: 0.5rem; 
    border-radius: 20px; 
    position: relative; 
    transform: rotate(2deg); 
    transition: transform 0.5s var(--bezier-premium); 
}

.profile-card:hover { 
    transform: rotate(0deg); 
}

.profile-img { 
    width: 100%; 
    height: 400px; 
    object-fit: cover; 
    border-radius: 14px; 
}

.mission-badge { 
    position: absolute; 
    bottom: -2rem; 
    left: -2rem; 
    width: 280px; 
    padding: 1.25rem; 
}



@media (max-width: 992px) {

    .hero-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 3rem; }

    .hero-sub { 
        margin: 1.5rem auto 2rem; 
    }

    .hero-actions { 
        justify-content: center; 
    }

    .mission-badge { 
        left: 50%; 
        transform: translateX(-50%); 
        bottom: -1rem; }
}

.status-quo .sq-content { 
    text-align: center; 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 3rem 2rem; 
}

.sq-stats { 
    display: flex; 
    justify-content: center; 
    gap: 4rem; 
    margin-top: 2rem; 
    border-top: 1px solid var(--surface-border); 
    padding-top: 2rem; 
}

.stat { 
    display: flex; 
    flex-direction: column; 
}

.stat-num { 
    font-size: 2.5rem; 
    font-weight: 700; 
    color: var(--accent); 
    font-family: 'JetBrains Mono', monospace; 
}

.stat-desc { 
    font-size: 0.875rem; 
    color: var(--text-muted); 
}

@media (max-width: 600px) { 
    
    .sq-stats { 
        gap: 2rem; 
        flex-direction: column; 
    } 
}

.layout-sidebar { 
    display: grid; 
    grid-template-columns: 300px 1fr; 
    gap: 4rem; 
}

.sidebar { 
    position: sticky; 
    top: 100px; 
    align-self: start; 
}

.tech-badges { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 0.75rem; 
    margin-top: 1.5rem; 
}

.badge { 
    background: var(--surface-glass); 
    border: 1px solid var(--surface-border); 
    padding: 0.5rem 0.75rem; 
    border-radius: 6px; 
    font-size: 0.875rem; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    font-family: 'JetBrains Mono', monospace; 
}

@media (max-width: 992px) { 

    .layout-sidebar { 
        grid-template-columns: 1fr; 
    } 
    
    .sidebar { 
        position: static; 
    } 
}

.project-stack { 
    display: flex; 
    flex-direction: column; 
    gap: 2rem; 
    margin-bottom: 2rem;
}

.project-card { 
    padding: 0; 
    overflow: hidden; 
    display: grid; 
    grid-template-columns: 1.2fr 1fr; 
}

.project-img-wrapper { 
    border-right: 1px solid var(--surface-border); 
    background: #000; 
}

.browser-bar { 
    padding: 0.75rem; 
    display: flex; 
    gap: 0.3rem; 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
}

.dot { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    background: #333; 
}

.dot:nth-child(1) { 
    background: #ff5f56; 
}

.dot:nth-child(2) {
     background: #ffbd2e; 
    } 
    
.dot:nth-child(3) { 
    background: #27c93f; 
}

.project-img { 
    width: 100%; 
    height: 300px; 
    object-fit: cover; 
    opacity: 0.8; 
    transition: opacity 0.5s ease; 
}

.project-card:hover .project-img { 
    opacity: 1; 
}

.project-info { 
    padding: 2rem; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

@media (max-width: 768px) { 
    
    .project-card { 
        grid-template-columns: 1fr; 
    } 
    
    .project-img-wrapper { 
        border-right: none; 
        border-bottom: 1px solid var(--surface-border); 
    } 
}

.reviews-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 1.5rem; 
}

.stars { 
    color: #fbbf24; 
    display: flex; 
    gap: 0.25rem; 
    margin-bottom: 1rem; 
}

.review-text { 
    font-style: italic; 
    margin-bottom: 1.5rem; 
}

.reviewer { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}

.avatar { 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    background: var(--surface-border); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 700; 
}

.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 1.5rem; 
    align-items: center; 
}

.pricing-card { 
    position: relative; 
    padding: 2.5rem 2rem; 
    display: flex; 
    flex-direction: column; 
}

.pricing-card.highlight { 
    transform: scale(1.05); 
    border-color: var(--accent); 
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.1); 
    z-index: 2; 
}

.pricing-card.highlight .btn-primary {
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--bg-base) !important;
}

.popular-badge { 
    position: absolute; 
    top: -12px; left: 50%; 
    transform: translateX(-50%); 
    background: var(--accent); 
    color: var(--text-primary) !important; 
    -webkit-text-fill-color: var(--bg-base) !important;
    font-size: 0.75rem; 
    font-weight: 700; 
    padding: 0.25rem 1rem; 
    border-radius: 100px; 
    text-transform: uppercase; 
}

.price { 
    font-size: 3rem; 
    margin: 0.5rem 0; 
    font-family: 'JetBrains Mono', monospace; 
}

.features { 
    list-style: none; 
    margin: 2rem 0; 
    flex-grow: 1; 
}

.features li { 
    display: flex;
     align-items: center; 
     gap: 0.75rem; 
     margin-bottom: 1rem; 
     font-size: 0.875rem; 
    }

.features li.disabled { 
    color: var(--text-muted); 
    opacity: 0.5; 
}

@media (max-width: 992px) { 

    .pricing-grid { 
        grid-template-columns: 1fr; 
        max-width: 400px; 
        margin: 0 auto; 
        gap: 2rem; } 
        
        .pricing-card.highlight { 

            transform: scale(1); 
        } 
}

/* Magnetic WhatsApp */
.magnetic-whatsapp {
    position: fixed; 
    bottom: 2rem; 
    right: 2rem; width: 60px; 
    height: 60px;
    background: #25D366; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: white; 
    z-index: 1000; 
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); 
    cursor: pointer;
}

.wa-tooltip {
    position: absolute; 
    right: 80px; 
    background: var(--surface-glass); 
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(8px); 
    padding: 0.5rem 1rem; 
    border-radius: 8px; 
    font-size: 0.875rem; 
    font-weight: 500;
    opacity: 0; 
    transform: translateX(10px); 
    transition: all 0.3s var(--bezier-premium); 
    pointer-events: none; 
    white-space: nowrap;
}

.magnetic-whatsapp:hover .wa-tooltip { 
    opacity: 1; 
    transform: translateX(0); 
}

/* Horizon Reveal Footer */
#main-content {
    background: var(--bg-base); 
    position: relative; 
    z-index: 2;
    margin-bottom: 400px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-bottom-left-radius: 24px; 
    border-bottom-right-radius: 24px;
    transition: background 0.5s var(--bezier-premium);
}

#footer {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 400px;
    z-index: 1; 
    background: #000; 
    color: #fff; 
    display: flex; 
    align-items: center;
}

.footer-content { 
    width: 100%; 
    display: flex; 
    flex-direction: column; 
    gap: 3rem; 
}

.footer-top { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    flex-wrap: wrap; 
    gap: 2rem; 
}

.footer-links { 
    display: flex; 
    gap: 4rem; 
}

.link-col { 
    display: flex; 
    flex-direction: column; 
    gap: 0.75rem; 
}

.link-col a { 
    font-size: 0.875rem; 
    color: #a1a1aa; 
    transition: color 0.3s; 
}

.link-col a:hover { 
    color: #fff; 
}

.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding-top: 1.5rem; 
    display: flex; 
    justify-content: space-between; 
    font-size: 0.875rem; 
    color: #a1a1aa; 
}

.status-indicator { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
}

.ping { 
    width: 8px; 
    height: 8px; 
    background: #10b981; 
    border-radius: 50%; 
    box-shadow: 0 0 10px #10b981; 
    animation: pulse 2s infinite; 
}

@keyframes pulse { 
    
    0% { 
        opacity: 1; 
    }

    50% { 
        opacity: 0.5; 
    } 
    
    100% { 
        opacity: 1; 
    } 
}

@media (max-width: 768px) {

    #main-content { 
        margin-bottom: 600px; 
    }
    
    #footer { 
        height: 600px; 
        align-items: flex-start; 
        padding-top: 3rem; 
    }

    .footer-links { 
        gap: 2rem; 
        width: 100%; 
        justify-content: space-between; 
    }

    .footer-bottom { 
        flex-direction: column; 
        gap: 1rem; 
        text-align: center; 
        justify-content: center; 
    }

    .status-indicator { 
        justify-content: center; 
    }

}


/* =========================================================
   PROJECT PAGE SPECIFIC UTILITIES
   ========================================================= */

/* Small variation of the tech badge for project cards */
.badge-sm {
    font-size: 0.7rem !important;
    padding: 0.25rem 0.6rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px !important;
    color: var(--text-primary) !important;
    display: inline-flex !important;
    font-family: 'Inter', sans-serif !important; /* Removes monospace for readability */
    font-weight: 500 !important;
}

:root[data-theme="light"] .badge-sm {
    background: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.project-info .tech-badges {
    margin-top: 0.5rem;
    gap: 0.5rem;
}

.project-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap; /* ensures buttons stack nicely on tiny phones */
}