.floating-nav .nav-link {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.floating-nav .nav-link .nav-icon {
  display: inline-flex;
  align-items: baseline;
  position: static;
}
.floating-nav .nav-link .nav-text {
  display: inline-flex;
  align-items: baseline;
  position: static;
}
.floating-nav .nav-link .nav-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
}
.floating-nav .nav-link .nav-text {
  display: flex;
  align-items: flex-end;
  position: relative;
  top: 2px;
}
.floating-nav .nav-link.share .nav-icon {
  margin-right: 2px;
}
.floating-nav .nav-link .nav-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
  filter: none !important;
}
.floating-nav .nav-link .nav-text {
  display: flex;
  align-items: center;
}
.floating-nav .nav-link.share .nav-icon {
  margin-right: 4px;
}
/* LinkedIn nav link alignment and logo color */
.floating-nav .nav-link.linkedin {
  display: flex;
  align-items: center;
  gap: 8px;
}
.floating-nav .nav-link.linkedin .nav-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
  /* Remove filter, show original blue */
}
/* Visual CV - Award-Winning Design */
:root {
    /* Color Palette - Deep Space Theme */
    --primary-bg: #0a0a0f;
    --secondary-bg: #151520;
    --accent-purple: #8b5cf6;
    --accent-blue: #06b6d4;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --accent-pink: #ec4899;
    
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    
    /* Typography */
    --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Crimson Text', Georgia, serif;
    
    /* Spacing */
    --section-padding: 8rem 0;
    --container-padding: 2rem;
    
    /* Animation */
    --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Particle Background */
#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at top, #1e1b4b 0%, #0a0a0f 50%);
}

#particle-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="star" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(139,92,246,0.8)"/><stop offset="100%" stop-color="rgba(139,92,246,0)"/></radialGradient></defs><circle cx="50" cy="50" r="1" fill="url(%23star)"/></svg>') repeat;
    background-size: 100px 100px;
    animation: starfield 60s linear infinite;
    opacity: 0.3;
}

@keyframes starfield {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 1000;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s var(--ease-out-cubic);
    cursor: pointer;
}

.nav-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 1.2rem;
}

.nav-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Make the logo white */
}

.nav-text {
    font-size: 0.875rem;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    animation: fadeInUp 1s var(--ease-out-cubic) 0.2s both;
}

.hero-name {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.name-line {
    display: block;
    animation: fadeInUp 1s var(--ease-out-cubic) 0.4s both;
}

.name-line.accent {
    color: var(--accent-purple);
    animation-delay: 0.6s;
}

.hero-title {
    margin-bottom: 3rem;
    animation: fadeInUp 1s var(--ease-out-cubic) 0.8s both;
}

.title-prefix {
    display: block;
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
    font-family: var(--font-primary);
}

.title-main {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--text-primary);
    margin-top: 0.5rem;
}

.title-suffix {
    display: block;
    font-size: 1rem;
    color: var(--accent-purple);
    font-weight: 500;
    font-family: var(--font-primary);
    margin-top: 0.5rem;
    font-style: italic;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s var(--ease-out-cubic) 1s both;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--ease-out-cubic);
}

.metric:hover {
    transform: translateY(-5px);
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--accent-purple);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s var(--ease-out-cubic) 1.2s both;
}

.profile-container {
    position: relative;
    text-align: center;
}

.profile-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-purple);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    transition: all 0.3s var(--ease-out-cubic);
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.4);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-status {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: var(--gradient-success);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    font-family: var(--font-primary);
}

.hero-footer {
    margin-top: 4rem;
    animation: fadeInUp 1s var(--ease-out-cubic) 1.4s both;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.contact-icon {
    font-size: 1.1rem;
}

.contact-link {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Experience Arc */
.experience-arc {
    padding: var(--section-padding);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.timeline-container {
    position: relative;
    margin-top: 4rem;
}

.timeline-track {
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-blue), var(--accent-green));
    border-radius: 2px;
}

.experience-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 6rem;
}

.experience-marker {
    position: absolute;
    left: 0.5rem;
    top: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 4px solid var(--primary-bg);
    z-index: 2;
}

.experience-marker.current {
    background: var(--gradient-secondary);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.experience-marker.microsoft {
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.experience-marker.early-career {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.experience-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s var(--ease-out-cubic);
}

.experience-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-purple);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: white;
    padding: 8px;
    border-radius: 12px;
}

.company-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.company-name {
    font-size: 1.125rem;
    color: var(--accent-purple);
    font-weight: 600;
}

.period {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.card-badge {
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-badge.entrepreneurship {
    background: var(--gradient-secondary);
}

.card-badge.leadership {
    background: var(--gradient-primary);
}

.card-badge.growth {
    background: var(--gradient-success);
}

.card-badge.innovation {
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
}

.card-badge.foundation {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
}

.card-badge.consulting {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
}

.role-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.achievements {
    display: grid;
    gap: 0.75rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    border-left: 3px solid var(--accent-purple);
}

/* Competencies Constellation */
.competencies-constellation {
    padding: var(--section-padding);
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.competency-node {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.4s var(--ease-out-cubic);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.competency-node.primary {
    border: 2px solid var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
}

.competency-node.secondary {
    border: 1px solid var(--accent-blue);
    background: rgba(6, 182, 212, 0.05);
}

.competency-node.tertiary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.competency-node:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.15);
}

.node-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.node-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.node-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Client Galaxy */
.client-galaxy {
    padding: var(--section-padding);
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.galaxy-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sector-orbit {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s var(--ease-out-cubic);
}

.sector-orbit:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.sector-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
    text-align: center;
    display: block;
}

.client-satellites {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 1rem;
    align-items: center;
    justify-items: center;
}

.satellite {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s var(--ease-out-cubic);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.satellite:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    border-color: var(--accent-purple);
}

/* Impact Metrics */
.impact-metrics {
    padding: var(--section-padding);
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.impact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s var(--ease-out-cubic);
}

.impact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-purple);
}

.card-icon {
    font-size: 3rem;
    min-width: 80px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-purple);
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-metric {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Contact CTA */
.contact-cta {
    padding: var(--section-padding);
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s var(--ease-out-cubic);
}

.cta-primary {
    background: var(--gradient-primary);
    color: white;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent-purple);
    color: var(--text-primary);
}

.cta-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
}

.cta-icon {
    font-size: 1.25rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .timeline-track {
        display: none;
    }
    
    .experience-item {
        padding-left: 0;
    }
    
    .experience-marker {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto 1rem;
    }
    
    .galaxy-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0; /* Reduced from 4rem */
        --container-padding: 1rem;
    }
    
    .floating-nav {
        position: fixed;
        top: auto;
        bottom: 1rem; /* Moved up slightly */
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        gap: 0.5rem; /* Reduced gap */
    }
    
    .nav-link {
        padding: 0.5rem 1rem; /* Reduced padding */
    }
    
    .nav-text {
        display: none;
    }
    
    /* HERO SECTION OPTIMIZATIONS */
    .hero {
        min-height: 80vh; /* Reduced from 100vh */
        padding: 1rem; /* Reduced padding */
    }
    
    .hero-grid {
        gap: 2rem; /* Reduced from 3rem */
    }
    
    .hero-badge {
        font-size: 0.75rem; /* Smaller badge */
        padding: 0.4rem 1.2rem; /* Reduced padding */
        margin-bottom: 1.5rem; /* Reduced margin */
    }
    
    .hero-name {
        font-size: clamp(2rem, 6vw, 3rem); /* Reduced max size */
        margin-bottom: 0.5rem; /* Reduced margin */
    }
    
    .title-prefix {
        font-size: 1rem; /* Reduced from 1.25rem */
    }
    
    .title-main {
        font-size: 1.5rem; /* Reduced from 2rem */
        margin-top: 0.25rem; /* Reduced margin */
    }
    
    .title-suffix {
        font-size: 0.9rem; /* Reduced from 1rem */
        margin-top: 0.25rem; /* Reduced margin */
    }
    
    .hero-title {
        margin-bottom: 2rem; /* Reduced from 3rem */
    }
    
    /* 3 METRICS IN ONE ROW - MUCH SMALLER */
    .hero-metrics {
        grid-template-columns: repeat(3, 1fr); /* Keep 3 columns on mobile */
        gap: 0.5rem; /* Much smaller gap */
        margin-bottom: 2rem; /* Add bottom margin */
    }
    
    .metric {
        padding: 0.75rem 0.5rem; /* Much smaller padding */
        border-radius: 0.75rem; /* Smaller border radius */
    }
    
    .metric-value {
        font-size: 1.2rem; /* Much smaller - was 2rem */
        margin-bottom: 0.25rem; /* Reduced margin */
        line-height: 1; /* Tighter line height */
    }
    
    .metric-label {
        font-size: 0.7rem; /* Much smaller - was 0.875rem */
        line-height: 1.2; /* Tighter line height */
    }
    
    /* Hero Visual */
    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        animation: fadeInUp 1s var(--ease-out-cubic) 1.2s both;
    }
    
    .profile-container {
        position: relative;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .profile-image {
        width: 168px; /* 40% smaller than 280px */
        height: 168px; /* 40% smaller than 280px */
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid var(--accent-purple); /* Thinner border */
        box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
        transition: all 0.3s var(--ease-out-cubic);
        margin: 0 auto; /* Ensure centering */
    }
    
    .profile-image:hover {
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(139, 92, 246, 0.4);
    }
    
    .profile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block; /* Remove inline spacing */
    }
    
    .profile-status {
        margin-top: 1rem; /* Reduced margin */
        padding: 0.5rem 1.5rem; /* Smaller padding */
        background: var(--gradient-success);
        border-radius: 1.5rem; /* Smaller border radius */
        font-size: 0.75rem; /* Smaller font */
        font-weight: 600;
        display: inline-block;
        font-family: var(--font-primary);
    }
    
    .hero-footer {
        margin-top: 2rem; /* Reduced from 4rem */
    }
    
    /* LOCATION AND CONTACT ON ONE LINE */
    .contact-info {
        flex-direction: row; /* Changed from column */
        justify-content: center;
        gap: 1.5rem; /* Reduced gap */
        flex-wrap: wrap; /* Allow wrapping if needed */
    }
    
    .contact-item {
        font-size: 0.75rem; /* Smaller font */
        gap: 0.4rem; /* Smaller gap */
    }
    
    .contact-icon {
        font-size: 1rem; /* Smaller icon */
    }
    
    /* CAREER JOURNEY TITLE SMALLER */
    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem); /* Much smaller */
        margin-bottom: 0.5rem; /* Reduced margin */
    }
    
    .section-subtitle {
        font-size: 1rem; /* Reduced from 1.25rem */
        margin-bottom: 1rem; /* Reduced margin */
    }
    
    .section-header {
        margin-bottom: 2rem; /* Reduced from 4rem */
    }
    
    /* EXPERIENCE ARC OPTIMIZATIONS */
    .experience-arc {
        padding: 2rem 0; /* Much reduced padding */
    }
    
    .experience-item {
        margin-bottom: 2rem; /* Reduced from 4rem */
    }
    
    .experience-marker {
        width: 2rem; /* Smaller marker */
        height: 2rem; /* Smaller marker */
        margin-bottom: 0.75rem; /* Reduced margin */
    }
    
    .experience-card {
        padding: 1.25rem; /* Reduced padding */
        border-radius: 1rem; /* Smaller border radius */
    }
    
    .role-description {
        font-size: 1rem; /* Reduced from 1.125rem */
        margin-bottom: 1rem; /* Reduced margin */
        line-height: 1.5; /* Tighter line height */
    }
    
    /* EXECUTIVE CAPABILITIES - 50% SMALLER */
    .competencies-constellation {
        padding: 2rem 0; /* Much reduced padding */
    }
    
    .competencies-grid {
        grid-template-columns: 1fr;
        gap: 1rem; /* Reduced gap */
    }
    
    .competency-node {
        padding: 1rem; /* 50% smaller - was 2rem */
        border-radius: 1rem; /* Smaller border radius */
    }
    
    .node-icon {
        font-size: 1.5rem; /* 50% smaller - was 3rem */
        margin-bottom: 0.5rem; /* 50% smaller margin */
    }
    
    .node-content h3 {
        font-size: 1.1rem; /* Smaller - was 1.5rem */
        margin-bottom: 0.5rem; /* Smaller margin */
        line-height: 1.2; /* Tighter line height */
    }
    
    .node-content p {
        font-size: 0.85rem; /* Smaller font */
        line-height: 1.4; /* Tighter line height */
    }
    
    /* CLIENT GALAXY OPTIMIZATIONS */
    .client-galaxy {
        padding: 2rem 0; /* Reduced padding */
    }
    
    .sector-orbit {
        padding: 1.25rem; /* Reduced padding */
        border-radius: 1rem; /* Smaller border radius */
    }
    
    .sector-label {
        font-size: 1rem; /* Reduced from 1.25rem */
        margin-bottom: 1rem; /* Reduced margin */
    }
    
    .client-satellites {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); /* Smaller satellites */
        gap: 0.75rem; /* Reduced gap */
    }
    
    .satellite {
        width: 50px; /* Smaller - was 70px */
        height: 50px; /* Smaller - was 70px */
        padding: 6px; /* Smaller padding */
        border-radius: 8px; /* Smaller border radius */
    }
    
    /* IMPACT METRICS OPTIMIZATIONS - MUCH SMALLER */
    .impact-metrics {
        padding: 2rem 0; /* Reduced padding */
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem; /* Much smaller gap */
    }
    
    .impact-card {
        padding: 1rem; /* Much smaller padding - was 1.25rem */
        gap: 0.75rem; /* Smaller gap */
        border-radius: 0.75rem; /* Smaller border radius */
        flex-direction: row; /* Back to row on mobile for compactness */
        text-align: left; /* Left align for better space usage */
    }
    
    .card-icon {
        font-size: 1.5rem; /* Much smaller - was 2rem */
        min-width: 50px; /* Fixed smaller width */
        margin-bottom: 0; /* Remove margin */
        flex-shrink: 0; /* Prevent shrinking */
    }
    
    .card-content h3 {
        font-size: 1rem; /* Much smaller - was 1.2rem */
        margin-bottom: 0.25rem; /* Reduced margin */
        line-height: 1.2; /* Tighter line height */
    }
    
    .card-content p {
        font-size: 0.8rem; /* Much smaller font */
        line-height: 1.3; /* Tighter line height */
        margin-bottom: 0.25rem; /* Much reduced margin */
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Limit to 2 lines */
        line-clamp: 2; /* Standard property for compatibility */
        -webkit-box-orient: vertical;
        overflow: hidden; /* Hide overflow */
    }
    
    .card-metric {
        font-size: 0.7rem; /* Much smaller font */
        margin-top: 0.25rem; /* Small top margin */
    }
    
    /* CONTACT CTA OPTIMIZATIONS */
    .contact-cta {
        padding: 2rem 0; /* Reduced padding */
    }
    
    .cta-content h2 {
        font-size: clamp(1.5rem, 4vw, 2rem); /* Smaller font */
        margin-bottom: 0.75rem; /* Reduced margin */
    }
    
    .cta-content p {
        font-size: 1rem; /* Reduced from 1.25rem */
        margin-bottom: 1.5rem; /* Reduced margin */
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem; /* Reduced gap */
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.75rem 2rem; /* Reduced padding */
        font-size: 1rem; /* Reduced from 1.125rem */
        border-radius: 1.5rem; /* Smaller border radius */
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    :root {
        --section-padding: 2rem 0; /* Even more reduced */
        --container-padding: 0.75rem;
    }
    
    .hero {
        min-height: 70vh; /* Further reduced */
        padding: 0.75rem;
    }
    
    .hero-grid {
        gap: 1.5rem; /* Further reduced */
    }
    
    .hero-name {
        font-size: clamp(1.8rem, 5vw, 2.5rem); /* Even smaller */
    }
    
    .title-main {
        font-size: 1.3rem; /* Further reduced */
    }
    
    .hero-metrics {
        gap: 0.25rem; /* Even smaller gap */
    }
    
    .metric {
        padding: 0.5rem 0.25rem; /* Even smaller padding */
    }
    
    .metric-value {
        font-size: 1rem; /* Even smaller */
    }
    
    .metric-label {
        font-size: 0.6rem; /* Even smaller */
    }
    
    .profile-image {
        width: 140px; /* Even smaller */
        height: 140px;
    }
    
    .profile-status {
        font-size: 0.7rem; /* Smaller font */
        padding: 0.4rem 1rem; /* Smaller padding */
    }
    
    .contact-info {
        gap: 1rem; /* Reduced gap */
    }
    
    .contact-item {
        font-size: 0.7rem; /* Even smaller */
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem); /* Even smaller */
    }
    
    .section-subtitle {
        font-size: 0.9rem; /* Smaller */
    }
    
    .competency-node {
        padding: 0.75rem; /* Even smaller */
    }
    
    .node-icon {
        font-size: 1.2rem; /* Even smaller */
        margin-bottom: 0.4rem;
    }
    
    .node-content h3 {
        font-size: 1rem; /* Smaller */
        margin-bottom: 0.4rem;
    }
    
    .node-content p {
        font-size: 0.8rem; /* Smaller */
    }
    
    .experience-card {
        padding: 1rem; /* Smaller padding */
    }
    
    .role-description {
        font-size: 0.9rem; /* Smaller */
    }
    
    .company-logo {
        width: 40px; /* Smaller logos */
        height: 40px;
        padding: 4px;
    }
    
    .company-details h3 {
        font-size: 1.1rem; /* Smaller */
    }
    
    .company-name {
        font-size: 0.9rem; /* Smaller */
    }
    
    .floating-nav {
        bottom: 0.5rem; /* Move closer to bottom */
        gap: 0.25rem; /* Even smaller gap */
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem; /* Even smaller */
    }
    
    /* IMPACT CARDS EVEN SMALLER */
    .impact-card {
        padding: 0.75rem; /* Even smaller */
        gap: 0.5rem; /* Even smaller gap */
    }
    
    .card-icon {
        font-size: 1.3rem; /* Even smaller */
        min-width: 40px; /* Even smaller width */
    }
    
    .card-content h3 {
        font-size: 0.9rem; /* Even smaller */
    }
    
    .card-content p {
        font-size: 0.75rem; /* Even smaller */
    }
    
    .card-metric {
        font-size: 0.65rem; /* Even smaller */
    }
}

/* Print styles - hide navigation and optimize for printing */
@media print {
    #particle-container,
    .floating-nav,
    .contact-cta {
        display: none !important;
    }
}
