:root {
    --bg-base: #08090b;
    --bg-surface: #101216;
    --border-color: #232730;
    --border-active: #00ff88;
    --accent-green: #00ff88;
    --accent-cyan: #00e5ff;
    --text-primary: #e6edf3;
    --text-muted:   #cfd3d4;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

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

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-mono);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Cyber Grid */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    pointer-events: none;
}

/* Subtle CRT scanline effect */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 4px;
    z-index: 99;
    pointer-events: none;
    opacity: 0.6;
}

/* Navbar */
.terminal-nav-wrapper {
    padding: 1.5rem;
    position: sticky;
    top: 0;
    z-index: 50;
}

.terminal-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    background: rgba(16, 18, 22, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-item {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.nav-item:hover, .contact-trigger {
    color: var(--accent-green);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* Main Layout */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0 6rem;
}

.terminal-tag {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.glitch-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.cyber-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.8rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.primary-btn {
    background: var(--accent-green);
    color: #000;
    border: 1px solid var(--accent-green);
}

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

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

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

/* Terminal Component */
.terminal-window {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.terminal-header {
    background: #181b20;
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.traffic-lights {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.close { background: #ff5f56; }
.min { background: #ffbd2e; }
.max { background: #27c93f; }

.window-title {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 1.5rem;
    font-size: 0.85rem;
}

.term-line {
    margin-bottom: 0.5rem;
}

.prompt {
    color: var(--accent-green);
    margin-right: 8px;
}

.term-output {
    color: #a5d6ff;
    margin-bottom: 1rem;
    overflow-x: auto;
}

.cursor {
    animation: blink 1s infinite;
    color: var(--accent-green);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Matrix Layout (About + Skills) */
.matrix-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.matrix-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    position: relative;
}

.matrix-box:hover {
    border-color: var(--border-active);
}

.box-num {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.matrix-box h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.matrix-box p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.skill-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.skill-node {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--border-color);
    padding: 1rem;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.02);
}

/* Connect Section */
.connect-matrix {
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    padding: 2.5rem;
    margin-bottom: 4rem;
}

.connect-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.connect-header p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.social-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.channel-card:hover {
    border-color: var(--accent-green);
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
}

.email-card {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Footer */
.terminal-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Responsiveness */
@media (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
    }

    .matrix-section {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-surface);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .terminal-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* ==========================================================================
   Photography & Lightbox Cyber Additions
   ========================================================================== */

.active-nav {
    color: var(--accent-green) !important;
}

.gallery-hero {
    padding: 3rem 0 3.5rem;
}

/* Photo Matrix Grid */
.gallery-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.photo-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
}

.photo-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.08);
}

.photo-viewfinder {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #000;
}

.photo-viewfinder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%) contrast(105%);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.photo-card:hover .photo-viewfinder img {
    transform: scale(1.04);
    filter: grayscale(0%) contrast(100%);
}

/* Viewfinder Corner Accents */
.vf-corner {
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: var(--accent-green);
    border-style: solid;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.photo-card:hover .vf-corner {
    opacity: 1;
}

.vf-corner.top-left { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.vf-corner.top-right { top: 8px; right: 8px; border-width: 2px 2px 0 0; }
.vf-corner.bottom-left { bottom: 8px; left: 8px; border-width: 0 0 2px 2px; }
.vf-corner.bottom-right { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }

.photo-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.8rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.photo-meta .meta-tag {
    color: var(--accent-cyan);
}

.meta-details {
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-details svg {
    width: 12px;
    height: 12px;
}

/* Archive Box */
.archive-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    padding: 2.5rem;
    margin-bottom: 4rem;
}

.archive-box h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.archive-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Lightbox Modal */
.cyber-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 9, 11, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.cyber-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-viewport {
    max-width: 900px;
    width: 100%;
    background: var(--bg-surface);
    border: 1px solid var(--accent-green);
    box-shadow: 0 0 35px rgba(0, 255, 136, 0.15);
}

.modal-bar {
    background: #181b20;
    border-bottom: 1px solid var(--border-color);
    padding: 0.6rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-status {
    font-size: 0.75rem;
    color: var(--accent-green);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #ff5f56;
}

.modal-image-container {
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: #000;
}

.modal-image-container img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.modal-caption {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .gallery-matrix {
        grid-template-columns: 1fr;
    }
    
    .archive-box {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ==========================================================================
   Email / Dispatch Console Cyber Additions
   ========================================================================== */

.contact-hero {
    padding: 3rem 0 2.5rem;
}

.comms-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

.comms-terminal {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.comms-form {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.textarea-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.char-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cyber-input,
.cyber-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    outline: none;
    transition: all 0.2s ease;
}

.cyber-input:focus,
.cyber-textarea:focus {
    border-color: var(--accent-green);
    background: rgba(0, 255, 136, 0.02);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.15);
}

.cyber-textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.status-feed {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Sidebar Box Styles */
.comms-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2rem;
    position: relative;
}

.sidebar-box h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.sidebar-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.direct-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.direct-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.direct-list li svg {
    width: 16px;
    height: 16px;
    color: var(--accent-cyan);
}

.direct-list a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.direct-list a:hover {
    color: var(--accent-green);
}

.side-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.side-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.side-social-link:hover {
    color: var(--text-primary);
    border-color: var(--accent-green);
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .comms-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ==========================================================================
   OS File Explorer Terminal Styling
   ========================================================================== */

.os-window {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    margin-bottom: 5rem;
}

.os-titlebar {
    background: #14171d;
    border-bottom: 1px solid var(--border-color);
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.os-breadcrumbs {
    font-size: 0.8rem;
    color: var(--accent-green);
    font-weight: 600;
}

.os-window-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.os-body {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 480px;
}

/* Tree Sidebar */
.os-sidebar {
    background: rgba(10, 11, 15, 0.6);
    border-right: 1px solid var(--border-color);
    padding: 1.5rem 1rem;
}

.sidebar-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.sidebar-heading svg {
    width: 14px;
    height: 14px;
}

.directory-tree {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.tree-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.tree-item svg {
    width: 15px;
    height: 15px;
    color: var(--accent-cyan);
}

.tree-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--border-color);
}

.tree-item.active {
    color: var(--accent-green);
    background: rgba(0, 255, 136, 0.06);
    border-color: rgba(0, 255, 136, 0.3);
}

/* Viewport Area */
.os-viewport {
    padding: 2rem;
    background: var(--bg-surface);
}

/* Folder Catalog Tiles */
.folder-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.folder-tile {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.015);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.25s ease;
}

.folder-tile:hover {
    border-color: var(--accent-green);
    background: rgba(0, 255, 136, 0.04);
    transform: translateY(-3px);
}

.folder-tile-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-green);
}

.folder-tile-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.folder-tile-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.folder-tile-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Inside Folder View */
.view-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.folder-header-box {
    margin-bottom: 2rem;
}

.folder-header-box h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--accent-green);
    margin-bottom: 0.4rem;
}

.folder-desc-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.directory-status-tag {
    font-size: 0.75rem;
    color: var(--accent-cyan);
}

.embed-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
}

.embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Window Status Bar */
.os-statusbar {
    background: #14171d;
    border-top: 1px solid var(--border-color);
    padding: 0.5rem 1.25rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 860px) {
    .os-body {
        grid-template-columns: 1fr;
    }

    .os-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}
/* ==========================================================================
   Projects Section Cyber Styling
   ========================================================================== */

.projects-section {
    margin-bottom: 5rem;
}

.section-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    letter-spacing: -1px;
    font-weight: 700;
}

.section-meta-count {
    font-size: 0.8rem;
    color: var(--accent-cyan);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.25s ease;
}

.project-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 255, 136, 0.08);
}

.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.project-num {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.project-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
}

.status-prod {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.status-dev {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.status-alpha {
    background: rgba(255, 189, 46, 0.1);
    color: #ffbd2e;
    border: 1px solid rgba(255, 189, 46, 0.3);
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.project-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.tech-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: #cbd5e1;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-link:hover {
    color: var(--text-primary);
}

.link-accent {
    color: var(--accent-green);
}

.link-accent:hover {
    color: #ffffff;
    text-shadow: 0 0 10px var(--accent-green);
}

.project-link-disabled {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #4b5563;
    cursor: not-allowed;
}

/* Placeholder Roadmap Card Variant */
.placeholder-card {
    border-style: dashed;
    background: rgba(16, 18, 22, 0.4);
}

.placeholder-card:hover {
    border-color: #ffbd2e;
    box-shadow: 0 12px 30px rgba(255, 189, 46, 0.08);
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
