/* ============================================
   COLOR PALETTE - Michelle's Custom Colors
   ============================================ */
:root {
    /* Base Colors */
    --black: #000000;
    --white: #ffffff;
    --dark-green: #0d3316;
    --dark-grey-azure: #253238;
    --grey-cyan: #557170;
    --light-grey-1: #b9b9c3;
    --light-grey-2: #dbdbdb;
    --dark-1: #141414;
    --dark-2: #5b5b5b;
    --dark-3: #3f3f3f;
    --medium-grey: #a3a3a3;

    /* Brighter accent palette (v2) */
    --teal-bright: #5eead4;       /* primary accent — bright teal */
    --teal-deep:   #2dd4bf;       /* hover / deeper accent */
    --teal-glow:   rgba(94, 234, 212, 0.45);
    --cyan-bright: #0891b2;       /* light-mode accent (vibrant cyan) */
    --cyan-deep:   #0e7490;       /* light-mode hover */
    --cyan-glow:   rgba(8, 145, 178, 0.22);
    --ink-dark:    #0b0d10;       /* warmer than pure black */
    --ink-surface: #16181d;       /* card / header tint on dark */
    --mist-light:  #e4e4e7;       /* body text on dark — brighter */
    --border-dark: #2a2d35;       /* warmer dark border */
    --surface-light: #f4f4f5;     /* softer light-mode secondary */
}

/* Dark Mode (Default) */
:root[data-theme="dark"] {
    --bg-primary: var(--ink-dark);
    --bg-secondary: var(--ink-surface);
    --terminal-bg: var(--ink-surface);
    --terminal-text: var(--white);
    --terminal-cursor: var(--teal-bright);
    --text-primary: var(--white);
    --text-secondary: var(--mist-light);
    --accent: var(--teal-bright);
    --border: var(--border-dark);
    --button-bg: var(--dark-grey-azure);
    --button-hover: var(--teal-deep);
    --header-bg: var(--ink-surface);
    --glow-color: var(--teal-glow);
}

/* Light Mode */
:root[data-theme="light"] {
    --bg-primary: var(--white);
    --bg-secondary: var(--surface-light);
    --terminal-bg: var(--surface-light);
    --terminal-text: var(--ink-dark);
    --terminal-cursor: var(--cyan-deep);
    --text-primary: var(--ink-dark);
    --text-secondary: #3f3f46;
    --accent: var(--cyan-bright);
    --border: #d4d4d8;
    --button-bg: var(--cyan-bright);
    --button-hover: var(--cyan-deep);
    --header-bg: var(--white);
    --glow-color: var(--cyan-glow);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

/* ============================================
   UNIFIED HEADER - Everything in One Line
   ============================================ */
.unified-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 18px var(--glow-color);
    z-index: 100;
}

.terminal-title {
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Fira Code', monospace;
    letter-spacing: 0.3px;
    flex: 1;
    text-align: center;
    opacity: 0.85;
}

/* Dark mode gradient */
:root[data-theme="dark"] .terminal-title {
    background: linear-gradient(135deg, var(--teal-bright) 0%, var(--teal-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 1;
}

/* Light mode gradient */
:root[data-theme="light"] .terminal-title {
    background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-button {
    background: var(--button-bg);
    color: var(--white);
    border: 1px solid var(--border);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.action-button:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.action-button svg {
    flex-shrink: 0;
}

.theme-toggle {
    background: var(--button-bg);
    color: var(--white);
    border: 1px solid var(--border);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.theme-toggle:hover {
    background: var(--button-hover);
    transform: translateY(-2px) rotate(15deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-family: 'Fira Code', monospace;
    color: var(--text-secondary);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--medium-grey);
    animation: pulse 2s ease-in-out infinite;
}

.status-dot.connected {
    background: var(--accent);
    box-shadow: 0 0 8px var(--glow-color);
    animation: none;
}

.status-dot.disconnected {
    background: #ff4444;
    animation: none;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   FULL-SCREEN TERMINAL - WITH GLOW EFFECT
   ============================================ */
.fullscreen-terminal {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg-primary);
    position: relative;
}

#terminal {
    flex: 1;
    padding: 1rem;
    overflow: hidden;
    margin: 1rem;
    border-radius: 12px;
    background: var(--terminal-bg);
    box-shadow: 
        0 0 0 1px var(--border),
        0 0 30px var(--glow-color),
        0 8px 32px rgba(0, 0, 0, 0.12);
    position: relative;
}

#terminal::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, var(--glow-color), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    pointer-events: none;
}

.xterm {
    height: 100%;
    width: 100%;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--accent);
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2000;
    pointer-events: none;
    box-shadow: 0 8px 28px var(--glow-color);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   VISUAL OVERLAY — base layer
   ============================================ */
.visual-overlay {
    position: fixed;
    inset: 0;
    top: 56px; /* header height */
    background: var(--bg-primary);
    overflow: hidden;
    z-index: 50;
    display: flex;

    /* Hidden by default — slides in from right */
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.visual-overlay.visible {
    transform: translateX(0);
    pointer-events: all;
}

.visual-scroll {
    flex: 1;
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* ============================================
   VISUAL — LEFT SIDEBAR NAV
   ============================================ */
.v-sidebar {
    width: 220px;
    flex-shrink: 0;
    height: 100%;
    padding: 2rem 0 2rem;
    border-right: 1px solid var(--border);
    background: var(--bg-primary);
    overflow-y: auto;
    box-sizing: border-box;
}

.v-sidebar-header {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
}

.v-sidebar-monogram {
    font-family: 'Fira Code', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
    letter-spacing: 0.02em;
}

.v-sidebar-sub {
    font-family: 'Fira Code', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0.7;
}

.v-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0 0.75rem;
}

.v-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.v-nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.v-nav-link.active {
    color: var(--accent);
    border-left-color: var(--accent);
    background: var(--bg-secondary);
}

.v-nav-num {
    font-size: 0.72rem;
    opacity: 0.55;
    font-variant-numeric: tabular-nums;
    min-width: 1.5em;
}

.v-nav-link.active .v-nav-num {
    opacity: 1;
}

.v-nav-label {
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Hamburger toggle (mobile only) */
.v-sidebar-toggle {
    display: none;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 60;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.v-sidebar-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.v-sidebar-toggle.open {
    color: var(--accent);
    border-color: var(--accent);
}

/* Mobile drawer backdrop */
.v-sidebar-backdrop {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 54;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.v-sidebar-backdrop.visible {
    opacity: 1;
    pointer-events: all;
}

/* ============================================
   VISUAL — HERO
   ============================================ */
.v-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem 8vw 4rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    isolation: isolate;
}

.v-hero::before {
    content: '';
    position: absolute;
    inset: -10% -20%;
    background:
        radial-gradient(ellipse 50% 40% at 15% 20%, var(--glow-color), transparent 70%),
        radial-gradient(ellipse 40% 35% at 85% 80%, var(--glow-color), transparent 70%);
    opacity: 0.9;
    z-index: -1;
    pointer-events: none;
    filter: blur(20px);
}

.v-hero-eyebrow {
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
    opacity: 0.8;
}

.v-hero-name {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--text-primary);
    margin: 0 0 1rem;
}

.v-hero-tagline {
    font-family: 'Fira Code', monospace;
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.v-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.v-badge {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    letter-spacing: 0.02em;
}

.v-hero-one-liner {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

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

.v-btn-primary {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.8rem;
    border-radius: 8px;
    background: var(--accent);
    color: var(--ink-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 14px var(--glow-color);
}

:root[data-theme="light"] .v-btn-primary {
    color: var(--white);
}

.v-btn-primary:hover {
    background: var(--button-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--glow-color);
}

.v-btn-secondary {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.75rem 1.8rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.v-btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}

/* ============================================
   VISUAL — SECTIONS
   ============================================ */
.v-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
}

.v-section-alt {
    background: var(--bg-secondary);
}

.v-section-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 8vw;
    box-sizing: border-box;
}

.v-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
}

.v-section-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 620px;
    margin-bottom: 3rem;
}

/* ============================================
   VISUAL — ABOUT
   ============================================ */
.v-about-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 4rem;
    align-items: start;
}

.v-about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

.v-about-text p:last-child { margin-bottom: 0; }

.v-about-text em {
    color: var(--accent);
    font-style: italic;
}

.v-about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 0.5rem;
}

.v-stat-num {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.v-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ============================================
   VISUAL — RESEARCH CARDS
   ============================================ */
.v-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.v-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.8rem;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.v-section-alt .v-card {
    background: var(--bg-secondary);
}

.v-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--glow-color);
}

.v-card-label {
    font-family: 'Fira Code', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.v-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 0.9rem;
}

.v-card-title a {
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(var(--accent), var(--accent));
    background-repeat: no-repeat;
    background-size: 0 2px;
    background-position: 0 100%;
    transition: background-size 0.25s ease, color 0.2s ease;
    padding-bottom: 2px;
}

.v-card-title a:hover {
    color: var(--accent);
    background-size: 100% 2px;
}

.v-section-subtitle a,
.v-about-text a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.v-section-subtitle a:hover,
.v-about-text a:hover {
    border-bottom-color: var(--accent);
    opacity: 0.85;
}

.v-card-body {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.v-card-insight {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
    border-left: 2px solid var(--accent);
    padding-left: 0.9rem;
    margin-top: 1rem;
}

.v-card-insight strong {
    color: var(--text-primary);
}

.v-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.v-tag {
    font-family: 'Fira Code', monospace;
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

/* ============================================
   VISUAL — TIMELINE
   ============================================ */
.v-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 2rem;
}

.v-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--border);
}

.v-timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.v-timeline-item:last-child { padding-bottom: 0; }

.v-timeline-marker {
    position: absolute;
    left: -2rem;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--bg-primary);
    z-index: 1;
}

.v-section-alt .v-timeline-marker {
    border-color: var(--bg-secondary);
}

.v-tl-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.3rem;
    flex-wrap: wrap;
}

.v-tl-role {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.v-tl-company {
    font-family: 'Fira Code', monospace;
    font-size: 0.82rem;
    color: var(--accent);
}

.v-tl-scale {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.v-tl-body {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 0.9rem;
}

.v-tl-body em {
    color: var(--accent);
    font-style: italic;
}

/* ============================================
   VISUAL — SKILLS
   ============================================ */
.v-skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.v-skill-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.9rem;
}

/* ============================================
   VISUAL — CONTACT
   ============================================ */
.v-contact-inner {
    text-align: center;
}

.v-contact-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 2.5rem;
}

.v-contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.v-contact-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.v-terminal-hint {
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.v-hint-link {
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    color: var(--accent);
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease;
}

.v-hint-link:hover { opacity: 0.7; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .unified-header {
        padding: 0.6rem 1rem;
        gap: 0.8rem;
    }

    .terminal-title {
        font-size: 0.8rem;
    }

    .action-button {
        padding: 0.5rem 0.8rem;
        font-size: 0.82rem;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
    }

    .connection-status {
        font-size: 0.75rem;
    }

    #terminal {
        padding: 0.5rem;
    }

    /* Visual mode mobile */
    .v-hero {
        padding: 3.5rem 6vw 3rem;
        min-height: 70vh;
    }

    .v-section-inner {
        padding: 0 6vw;
    }

    /* Sidebar becomes a drawer */
    .v-sidebar-toggle {
        display: flex;
    }

    .v-sidebar {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 55;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 4rem;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.35);
    }

    .v-sidebar.open {
        transform: translateX(0);
    }

    .v-sidebar-backdrop {
        display: block;
    }

    .v-about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .v-about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .v-cards {
        grid-template-columns: 1fr;
    }

    .v-skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .v-tl-header {
        flex-direction: column;
        gap: 0.2rem;
    }
}
