/* CSS Variables - REQUIRED FOR ALL PAGES */
/* Updated: Deep Royal Purple accent with grayscale foundation */
:root {
    /* Grayscale Foundation */
    --primary: #18181b;           /* near-black for text and dark elements */
    --text-primary: #18181b;      /* near-black for primary text */
    --text-secondary: #52525b;    /* medium gray for secondary text */
    --text-muted: #71717a;        /* light gray for muted text */
    --text-light: rgba(255, 255, 255, 0.9);
    --bg-primary: #ffffff;        /* white backgrounds */
    --bg-secondary: #fafafa;      /* near-white for cards/sections */
    --bg-dark: #18181b;           /* dark sections */
    --border: #d0d7de;
    --border-light: #e1e7ec;
    --shadow-sm: 0 1px 3px rgba(31,35,40,0.08);
    --shadow-md: 0 4px 12px rgba(31,35,40,0.12);
    --shadow-lg: 0 8px 24px rgba(31,35,40,0.16);
    
    /* Deep Royal Purple Accent - Strategic Use Only */
    --accent: #6d28d9;            /* deep royal purple for CTAs and key metrics */
    --accent-hover: #5b21b6;      /* darker purple for hover states */
    --accent-light: #8b5cf6;      /* lighter purple for gradients */
    --accent-gradient: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
    --accent-glow: rgba(109, 40, 217, 0.15); /* for subtle backgrounds */
    
    /* Legacy success for compatibility */
    --success: #1a7f37;
    
    /* Video intro transition timing */
    --video-fade-duration: 1s;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

/* Responsive images and media */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation Styles */
.main-nav {
    position: sticky;
    top: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    z-index: 1001;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
    font-weight: 600;
}

.nav-cta {
    padding: 8px 16px;
    background: var(--accent) !important;
    color: white !important;
    border-radius: 6px;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
}

/* Video Intro Onboarding Styles */
.video-intro-onboarding {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    background: #000000;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.video-intro-onboarding.fade-out {
    opacity: 0;
    pointer-events: none;
}

.intro-phase {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-phase.active {
    opacity: 1;
}

.intro-phase.fade-out {
    opacity: 0;
}

/* Video Phase */
.video-phase {
    background: #000000;
}

.intro-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Text Phase */
.text-phase {
    background: #000000;
}

.typewriter-container {
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
    width: 100%;
}

.typewriter-line {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #ffffff;
    font-size: 56px;
    line-height: 1.3;
    margin-bottom: 16px;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.typewriter-line.visible {
    opacity: 1;
}

/* Mobile responsive typewriter text */
@media (max-width: 768px) {
    .typewriter-line {
        font-size: 32px;
        margin-bottom: 12px;
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .video-intro-onboarding {
        display: none !important;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    min-height: 44px; /* Better touch target for mobile */
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
    letter-spacing: 0.3px; /* Improved legibility for button text */
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(109, 40, 217, 0.3);
}

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

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

/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

/* Ensure paragraphs following section titles are centered */
.section-title + p,
.section-title + div > p:first-child {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles */
.footer {
    padding: 48px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #ffffff 100%);
    /* REMOVED: Purple divider line - border-top: 2px solid var(--accent); */
    position: relative;
}

/* REMOVED: Purple divider line
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
}
*/

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 14px;
}

/* ADD YOUR CASE STUDY STYLES BELOW THIS LINE */
/* ========================================== */

/* Section Divider Image Overrides - Remove all padding for full-bleed effect */
.image-section-divider,
.image-section-divider.full-bleed,
.image-section-divider .divider-content,
.image-section-divider .divider-image-container {
    padding: 0 !important;
    margin: 0;
    width: 100%;
    max-width: none;
}

.image-section-divider img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

/* Portfolio Showcase Overrides - Remove all padding for full-bleed effect */
.portfolio-showcase {
    padding: 0 !important;
    margin: 0;
    width: 100%;
}

.portfolio-showcase-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

/* Personas Visual Overrides - Remove all padding for full-bleed effect */
.personas-visual {
    padding: 0 !important;
    margin: 0;
    width: 100%;
}

.personas-visual .container {
    padding: 0 !important;
    margin: 0;
    width: 100%;
    max-width: none;
}

.personas-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

/* Case Study Page Styles */
.case-hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #f6f8fa 0%, #ffffff 100%);
    text-align: center;
}

.case-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.case-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.case-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Continue with rest of case study styles... */
.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
}

.brand-logos a {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.brand-logos a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 1);
}

.brand-logo {
    max-width: 90px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Jaggers logo is white, so add a subtle shadow for visibility */
.jaggers-logo {
    filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.25));
}

/* TXRH Hero Section */
.txrh-hero {
    padding: 80px 0 100px;
    background-color: #3d2817; /* Fallback color matching wood tone */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/txrh-woodgrain.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

.txrh-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Impact Metrics Section */
.impact-metrics {
    padding: 80px 0;
    background: white;
}

.metrics-showcase {
    margin-top: 48px;
}

.metric-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #27272a 100%);
    border-radius: 20px;
    color: white;
    position: relative;
}

.metric-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 70%);
    border-radius: 20px;
    pointer-events: none;
}

.metric-hero > div,
.metric-hero > p {
    position: relative;
    z-index: 1;
}

.metric-prefix, .metric-suffix {
    font-size: 48px;
    font-weight: 700;
}

.metric-number {
    font-size: 96px;
    font-weight: 800;
    margin: 0 8px;
}

.metric-context {
    font-size: 20px;
    margin-top: 16px;
    opacity: 0.95;
}

.supporting-metrics {
    display: grid;
    gap: 24px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 24px;
}

.metric-item {
    padding: 28px 24px;
    background: var(--bg-primary);
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(31, 35, 40, 0.06), 0 1px 3px rgba(31, 35, 40, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(31, 35, 40, 0.12), 0 4px 8px rgba(31, 35, 40, 0.08);
    border-color: var(--accent);
}

.metric-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.metric-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.metric-detail {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
}

/* Revenue Chart */
.financial-impact {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        #6d28d9 0%,      /* Deep royal purple */
        #8b5cf6 25%,     /* Lighter purple */
        #a78bfa 50%,     /* Mid-tone purple */
        #8b5cf6 75%,     /* Lighter purple */
        #6d28d9 100%     /* Back to deep royal purple */
    );
    position: relative;
    overflow: hidden;
}

/* Add subtle overlay pattern for depth */
.financial-impact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Ensure content is above the overlay */
.financial-impact .container {
    position: relative;
    z-index: 1;
}

/* Update text colors for better contrast on purple background */
.financial-impact .section-title {
    color: white;
}

.financial-impact p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.financial-impact .platform-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* TXRH Specific: Reduce spacing for outcome section */
.txrh-outcome-section {
    padding: 80px 0 0;
    margin-bottom: 0;
}

/* TXRH Specific: "What This Proves" section styling */
.txrh-proves-section {
    padding: 32px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    margin-top: 0;
}

.txrh-proves-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(109, 40, 217, 0.2) 50%, transparent 100%);
}

.revenue-chart {
    background: white;
    padding: 40px;
    border-radius: 16px;
    margin-top: 32px;
}

/* Fix for Revenue Chart Bars - Add this to your CSS */
.revenue-progression {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 300px;
    margin-top: 40px;
    position: relative;
    padding-bottom: 20px;
}

.revenue-point {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    height: 100%;
}

.revenue-bar {
    width: 60px;
    background: var(--primary);
    border-radius: 4px 4px 0 0;
    margin: 8px 0;
    transition: all 0.3s;
    position: absolute;
    bottom: 0;
}

/* Set specific heights for each bar */
.revenue-point:nth-child(1) .revenue-bar {
    height: 20%;
    background: var(--primary);
}

.revenue-point:nth-child(2) .revenue-bar {
    height: 45%;
    background: var(--primary);
}

.revenue-point:nth-child(3) .revenue-bar {
    height: 70%;
    background: var(--primary);
}

.revenue-point:nth-child(4) .revenue-bar {
    height: 85%;
    background: var(--primary);
}

.revenue-point:nth-child(5) .revenue-bar {
    height: 100%;
    background: var(--success);
}

/* Position text elements properly */
.revenue-point .year {
    position: absolute;
    bottom: -40px;
    font-weight: 600;
    color: var(--text-primary);
}

.revenue-point .amount {
    position: absolute;
    top: -30px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

.revenue-point .percentage {
    position: absolute;
    bottom: -60px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Mobile responsive styles for Revenue Chart */
@media (max-width: 768px) {
    .revenue-chart {
        padding: 24px 16px;
        min-height: 350px;
    }
    
    .revenue-progression {
        height: 250px;
        padding-bottom: 60px;
        margin-top: 24px;
    }
    
    .revenue-bar {
        width: 40px;
    }
    
    .revenue-point .amount {
        font-size: 14px;
        top: -25px;
        white-space: nowrap;
    }
    
    .revenue-point .year {
        font-size: 13px;
        bottom: -35px;
    }
    
    .revenue-point .percentage {
        font-size: 10px;
        bottom: -50px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .revenue-chart {
        padding: 20px 12px;
        min-height: 320px;
    }
    
    .chart-header h3 {
        font-size: 18px;
    }
    
    .chart-header p {
        font-size: 13px;
    }
    
    .revenue-progression {
        height: 200px;
        padding-bottom: 55px;
        margin-top: 20px;
        gap: 4px;
    }
    
    .revenue-bar {
        width: 28px;
    }
    
    .revenue-point .amount {
        font-size: 12px;
        top: -22px;
    }
    
    .revenue-point .year {
        font-size: 11px;
        bottom: -32px;
    }
    
    .revenue-point .percentage {
        font-size: 9px;
        bottom: -46px;
    }
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 32px;
    margin-top: 48px;
}

.platform-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.platform-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary);
}

.metric-list {
    list-style: none;
    padding: 0;
}

.metric-list li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.metric-list strong {
    color: var(--text-primary);
}

/* Journey Grid */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 24px;
    margin-top: 48px;
}

.journey-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.journey-year {
    display: inline-block;
    padding: 4px 8px;
    background: var(--accent);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Lessons Grid */
.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 32px;
    margin-top: 48px;
}

.lesson-card {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 12px;
}

.lesson-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

/* Case CTA */
.case-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #27272a 100%);
    color: white;
    text-align: center;
    position: relative;
}

.case-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.case-cta .container {
    position: relative;
    z-index: 1;
}

.case-cta h2 {
    color: white;
    margin-bottom: 16px;
}

.case-cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ===================================
   HOMEPAGE STYLES
   =================================== */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d1b4e 0%, #1a1028 50%, #0d0515 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0 120px;
    min-height: 600px;
    opacity: 0;
    transition: opacity 0.8s ease-in;
}

.hero.visible {
    opacity: 1;
}

/* Purple glow overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, var(--accent-glow) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
    opacity: 1;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Floating geometric shapes */
.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(9, 105, 218, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: floatHero 20s ease-in-out infinite;
    pointer-events: none;
    opacity: 1;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.8;
}

.hero-decoration-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: floatHero 25s ease-in-out infinite;
    animation-delay: -5s;
}

.hero-decoration-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation: floatHero 18s ease-in-out infinite;
    animation-delay: -10s;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

@keyframes floatHero {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.txrh-hero .hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
}
.hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-title .highlight {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    display: inline-block;
    animation: highlightGlow 3s ease-in-out infinite;
}

@keyframes highlightGlow {
    0%, 100% {
        text-decoration-color: rgba(255, 255, 255, 0.5);
    }
    50% {
        text-decoration-color: rgba(255, 255, 255, 0.8);
    }
}

.txrh-hero .hero-description {
    color: #ffffff !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8) !important;
}

.hero .hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.hero-actions .btn {
    position: relative;
    overflow: hidden;
}

.hero-actions .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-actions .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Homepage Navigation Buttons Section */
.homepage-nav-buttons {
    padding: 0;
    margin: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.homepage-nav-buttons a {
    display: block;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.homepage-nav-buttons a:focus {
    outline: 3px solid var(--accent);
    outline-offset: 1px;
}

.homepage-nav-buttons a:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.homepage-nav-buttons img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
    vertical-align: bottom;
}

.homepage-nav-buttons a:hover img {
    transform: translateY(-4px) scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .homepage-nav-buttons {
        padding: 0;
        gap: 0;
        margin: 0;
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .homepage-nav-buttons img {
        transition: none;
    }
    
    .homepage-nav-buttons a:hover img {
        transform: none;
    }
}


.image-section-divider img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 400px; /* Adjust this value to your preference */
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
}

/* Metrics Section (Homepage) */
.metrics {
    padding: 80px 0;
    background: var(--bg-primary);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 24px;
}

.metric-card {
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(109, 40, 217, 0.03) 100%);
}

/* Initiatives Section */
.initiatives {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 24px;
}

.initiative-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all 0.2s;
}

.initiative-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.initiative-header {
    margin-bottom: 16px;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.status-badge.active {
    background: rgba(26, 127, 55, 0.1);
    color: var(--success);
}

.status-badge.development {
    background: rgba(109, 40, 217, 0.1);
    color: var(--accent);
}

.initiative-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.initiative-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.link-arrow {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.link-arrow:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background: var(--bg-primary);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.philosophy-statement {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 32px;
    text-align: left;
}

.principle h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.principle p {
    color: var(--text-secondary);
}

/* ===================================
   AI PROJECTS PAGE STYLES
   =================================== */

.portfolio-header {
    padding: 80px 0 40px;
    background: var(--bg-secondary);
    text-align: center;
}

.portfolio-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.portfolio-tagline {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.portfolio-metrics {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.metric-pill {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.metric-pill.large {
    padding: 10px 20px;
    font-size: 16px;
}

.projects {
    padding: 60px 0;
}

.project-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 32px;
}

.project-card.featured {
    border-color: var(--accent);
    border-width: 2px;
}

.project-header h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.project-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.production {
    background: rgba(26, 127, 55, 0.1);
    color: var(--success);
}

.badge.impact {
    background: rgba(109, 40, 217, 0.1);
    color: var(--accent);
}

.badge.automation {
    background: rgba(109, 40, 217, 0.1);
    color: var(--accent);
}

.badge.scale {
    background: rgba(109, 40, 217, 0.1);
    color: var(--accent);
}

.project-section {
    margin-bottom: 32px;
}

.project-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.project-section p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 16px;
    margin-top: 16px;
}

.impact-item {
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.impact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.impact-item span {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.impact-list {
    list-style: none;
    padding: 0;
}

.impact-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.impact-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.tech-tags,
.capabilities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tech-tag,
.capability {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.project-link {
    margin-top: 16px;
}

.vision {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 32px;
}

.vision-item {
    padding: 32px;
    background: var(--bg-primary);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.vision-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

/* ===================================
   RESUME/EXPERIENCE PAGE STYLES
   =================================== */

.resume-header {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #27272a 50%, var(--bg-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Geometric decorative elements */
.resume-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.resume-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Decorative floating orbs */
.header-decoration-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.header-orb-1 {
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    animation: float 18s ease-in-out infinite;
}

.header-orb-2 {
    top: 50%;
    left: 5%;
    width: 200px;
    height: 200px;
    animation: float 22s ease-in-out infinite 2s;
}

.header-orb-3 {
    bottom: 10%;
    right: 20%;
    width: 150px;
    height: 150px;
    animation: float 16s ease-in-out infinite 4s;
}

.resume-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.resume-tagline {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.resume-summary {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.resume-quick-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.resume-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.resume-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.resume-link svg {
    flex-shrink: 0;
}

.resume-summary-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.achievements-bar {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 32px;
    text-align: center;
}

.achievement {
    padding: 24px;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 2px solid var(--border-light);
    transition: all 0.2s;
}

.achievement:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.achievement-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.achievement-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.experience,
.skills,
.education {
    padding: 60px 0;
}

.job {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.2s;
}

.job:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 16px;
}

.job-header h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.company {
    color: var(--text-secondary);
    font-size: 14px;
}

.job-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.job-badge.current {
    background: rgba(26, 127, 55, 0.1);
    color: var(--success);
}

.job-summary {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-style: italic;
}

.job-details {
    list-style: none;
    padding: 0;
}

.job-details li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.job-details li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.job-metrics {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.metric-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(9, 105, 218, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 32px;
}

.skill-category {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.skill-category h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.skill-category ul {
    list-style: none;
    padding: 0;
}

.skill-category li {
    padding: 6px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.skill-category li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.degree {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.degree h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.school {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Responsive Design - Mobile First Approach */

/* Tablet and larger mobile devices (481px - 768px) */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .nav-menu {
        gap: 16px;
        font-size: 14px;
    }
    
    /* Hero section adjustments */
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-slide-content {
        padding: 60px 0 80px;
        min-height: auto;
    }
    
    .hero-title,
    .case-title {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 28px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Brand logos - Tablet (768px) breakpoint */
    .brand-logos {
        gap: 20px;
    }
    
    .brand-logos a {
        width: 110px;
        height: 110px;
        padding: 20px;
    }
    
    .brand-logo {
        max-width: 70px;
        max-height: 70px;
    }
    
    /* Grid layouts */
    .metrics-grid,
    .initiatives-grid,
    .skills-grid,
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Cards */
    .project-card,
    .metric-card,
    .initiative-card {
        padding: 24px 20px;
    }
    
    /* Stat displays */
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    /* Section spacing */
    .career-impact,
    .metrics,
    .initiatives,
    .featured-brands {
        padding: 60px 0;
    }
    
    /* Typography adjustments */
    .section-title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    /* Timeline entries */
    .timeline-visual {
        gap: 24px;
    }
    
    .timeline-entry {
        padding: 24px;
    }
    
    /* Portfolio summary */
    .portfolio-summary {
        flex-direction: column;
        gap: 24px;
    }
    
    .summary-number {
        font-size: 32px;
    }
    
    /* Brand cards */
    .brand-card {
        padding: 24px;
    }
    
    .brand-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    /* Portfolio showcase */
    .portfolio-showcase {
        padding: 60px 0;
    }
    
    /* CTA sections */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Resume header adjustments */
    .resume-header {
        padding: 60px 0 40px;
    }
    
    .resume-header h1 {
        font-size: 36px;
    }
    
    .resume-tagline {
        font-size: 20px;
    }
    
    .resume-quick-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .resume-link {
        width: 100%;
        justify-content: center;
    }
    
    .header-decoration-orb {
        display: none;
    }
    
    /* TXRH specific responsive adjustments for section spacing */
    .txrh-outcome-section {
        padding: 60px 0 15px;
    }
    
    .txrh-proves-section {
        padding: 15px 0 60px;
    }
}

/* Small mobile devices (max 480px) */
@media (max-width: 480px) {
    /* Container adjustments */
    .container {
        padding: 0 16px;
    }
    
    .txrh-outcome-section {
        padding: 48px 0 24px;
    }
    
    .txrh-proves-section {
        padding: 24px 0 48px;
    }
    
    /* Navigation brand */
    .nav-brand {
        font-size: 16px;
    }
    
    /* Hero section */
    .hero {
        padding: 48px 0 60px;
    }
    
    .hero-title,
    .case-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    /* Brand logos - Mobile (480px) breakpoint - Fix cutoff */
    .brand-logos {
        gap: 16px;
        flex-wrap: wrap;
        padding: 0 8px;
    }
    
    .brand-logos a {
        width: 90px;
        height: 90px;
        padding: 16px;
    }
    
    .brand-logo {
        max-width: 58px;
        max-height: 58px;
    }
    
    .hero-tag {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .hero-stats {
        padding: 20px;
        gap: 16px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    /* Stat displays */
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Section spacing */
    .career-impact,
    .metrics,
    .initiatives,
    .featured-brands,
    .case-hero,
    .impact-metrics,
    .financial-impact,
    .platform-section,
    .journey-section,
    .implications-section,
    .case-cta,
    .user-research-impact,
    .portfolio-showcase {
        padding: 48px 0;
    }
    
    /* Typography */
    .section-title {
        font-size: 26px;
        margin-bottom: 24px;
        line-height: 1.3;
    }
    
    /* Resume header adjustments */
    .resume-header {
        padding: 48px 0 32px;
    }
    
    .resume-header h1 {
        font-size: 28px;
    }
    
    .resume-tagline {
        font-size: 18px;
    }
    
    /* Cards */
    .project-card,
    .metric-card,
    .initiative-card,
    .brand-card,
    .timeline-entry {
        padding: 20px 16px;
    }
    
    /* Metric displays */
    .metric-number {
        font-size: 72px;
    }
    
    .metric-prefix,
    .metric-suffix {
        font-size: 36px;
    }
    
    .metric-value {
        font-size: 32px;
    }
    
    /* Portfolio hero */
    .portfolio-hero h1 {
        font-size: 32px;
    }
    
    .portfolio-subtitle {
        font-size: 16px;
    }
    
    .summary-number {
        font-size: 28px;
    }
    
    .summary-label {
        font-size: 12px;
    }
    
    /* Brand header */
    .brand-header {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }
    
    .brand-header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    
    .brand-icon {
        display: block;
        width: 48px;
        height: 48px;
        margin: 0 auto;
    }
    
    .brand-header h3 {
        display: block;
        font-size: 20px;
        margin: 0;
        width: 100%;
    }
    
    .brand-badge {
        display: block;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
/* ===================================
   BRAND PORTFOLIO PAGE STYLES
   =================================== */

.portfolio-hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #27272a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-hero:before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: var(--accent-glow);
    border-radius: 50%;
}

.portfolio-hero:after {
    content: "";
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: var(--accent-glow);
    border-radius: 50%;
}

.portfolio-hero .container {
    position: relative;
    z-index: 1;
}

.portfolio-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.portfolio-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 48px;
}

.portfolio-summary {
    display: flex;
    justify-content: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.summary-stat {
    text-align: center;
}

.summary-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.summary-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Brands */
.featured-brands {
    padding: 80px 0;
}

.brand-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.brand-card.featured {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-md);
}

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.brand-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}

.brand-header h3 {
    font-size: 28px;
    color: var(--text-primary);
}

.brand-header h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.brand-header h3 a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.brand-badge {
    padding: 8px 16px;
    background: var(--accent);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.brand-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
}

.brand-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand-stat {
    padding: 8px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 14px;
}

.brand-metrics ul {
    list-style: none;
    padding: 0;
}

.brand-metrics li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.brand-metrics li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.brand-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 24px;
    margin-top: 48px;
}

.brand-tile {
    padding: 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}

.brand-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.brand-tile h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.brand-tile h4 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.brand-tile h4 a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.brand-year {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.brand-tile ul {
    list-style: none;
    padding: 0;
}

.brand-tile li {
    padding: 4px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Impact Summary */
.impact-summary {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.impact-narrative {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.impact-narrative p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.impact-cta {
    text-align: center;
}

/* Portfolio Showcase Section */
.portfolio-showcase {
    padding: 80px 0;
    margin: 0;
    background: var(--bg-secondary);
    display: block;
    width: 100%;
}

.portfolio-showcase-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0;
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    max-width: 1200px;
}

/* Additional Brands Section */
.additional-brands {
    padding: 80px 0;
    background: var(--bg-secondary);
}
/* ===================================
   ENHANCED HOMEPAGE STYLES (MISSING)
   =================================== */

/* Hero Stats Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 24px;
    margin: 32px 0;
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.stat {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Career Timeline */
.career-impact {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.timeline-visual {
    display: grid;
    gap: 32px;
    margin-top: 48px;
}

.timeline-entry {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.timeline-entry.highlight {
    border-left-color: var(--accent);
}

.timeline-entry.current {
    border-left-color: var(--success);
}

.timeline-entry .year {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.timeline-entry h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.timeline-entry .role {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 16px;
}

.timeline-entry .achievements {
    list-style: none;
    padding: 0;
}

.timeline-entry .achievements li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
}

.timeline-entry .achievements li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Brand Grid */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 16px;
    margin-top: 16px;
}

.brand-impact {
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 14px;
}

.brand-impact strong {
    color: var(--primary);
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 50%, #f3e8ff 100%);
}

.story-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 24px;
    margin-top: 48px;
}

.story-card {
    padding: 32px;
    background: white;
    border-radius: 12px;
    border-top: 4px solid var(--border);
}

.story-card.highlight {
    border-top-color: var(--success);
    box-shadow: var(--shadow-md);
}

.story-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.leader-quote {
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #27272a 100%);
    color: white;
    border-radius: 12px;
    font-size: 18px;
    font-style: italic;
    text-align: center;
    position: relative;
}

.leader-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 70%);
    border-radius: 12px;
    pointer-events: none;
}

/* Current Value Section */
.current-value {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Executive CTA */
.executive-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #27272a 100%);
    color: white;
    text-align: center;
    position: relative;
}

.executive-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.executive-cta .container {
    position: relative;
    z-index: 1;
}

.executive-cta h2 {
    color: white;
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 32px;
    opacity: 0.95;
}

.cta-metrics {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-metrics .metric {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    font-weight: 600;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Footer Quote */
.footer-quote {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 48px;
}

/* Proven Impact Section */
.proven-impact {
    padding: 80px 0;
    background: white;
}

.impact-comparison {
    display: grid;
    gap: 48px;
    margin-top: 48px;
}

.impact-period {
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: 16px;
}

.impact-period.current {
    background: white;
    border: 2px solid var(--accent);
}

.impact-period h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-card {
    border: 2px solid var(--accent);
    transform: scale(1.05);
}

/* Strategic CTA Section (missing in your CSS) */
.strategic-cta {
    padding: 80px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.strategic-cta h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.strategic-cta p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 32px;
    color: var(--text-secondary);
}

/* ===================================
   CURRENT IMPACT PAGE STYLES
   =================================== */

/* Impact Hero */
.impact-hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #27272a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-hero:before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--accent-glow);
    border-radius: 50%;
}

.impact-hero .container {
    position: relative;
    z-index: 1;
}

.impact-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    font-size: 14px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.impact-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 24px;
}

.impact-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 48px;
    opacity: 0.95;
}

.impact-stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.impact-stat {
    text-align: center;
}

.impact-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.impact-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 4px;
}

/* GitHub Journey */
.github-journey {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.journey-narrative {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.narrative-intro {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.transformation-timeline {
    display: grid;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.transformation-phase {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--border);
    position: relative;
    transition: all 0.3s;
}

.transformation-phase.highlight {
    border-left-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.transformation-phase.current {
    border-left-color: var(--success);
}

.phase-date {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.transformation-phase h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.phase-outcome {
    margin-top: 16px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 14px;
}

.phase-outcome strong {
    color: var(--primary);
}

/* AI Portfolio */
.ai-portfolio {
    padding: 80px 0;
    background: white;
}

.ai-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
    gap: 32px;
    margin-top: 48px;
}

.ai-project {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.ai-project:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.ai-project.featured {
    border: 2px solid var(--accent);
    grid-column: span 2;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-header h3 {
    font-size: 22px;
    color: var(--text-primary);
}

.project-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.project-status.live {
    background: rgba(26, 127, 55, 0.1);
    color: var(--success);
}

.project-status.development {
    background: rgba(109, 40, 217, 0.1);
    color: var(--accent);
}

.project-metrics {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.metric-item {
    text-align: center;
    flex: 1;
}

.metric-item strong {
    display: block;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 4px;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tech {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-badge {
    padding: 4px 12px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.project-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.project-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Agile Transformation */
.agile-transformation {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 32px;
    margin-top: 48px;
}

.transformation-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border-top: 4px solid var(--border);
}

.transformation-card.highlight {
    border-top-color: var(--success);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.transformation-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.transformation-list {
    list-style: none;
    padding: 0;
}

.transformation-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
}

.transformation-list.before li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.transformation-list.after li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.transformation-list.future li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Leadership Lessons */
.leadership-lessons {
    padding: 80px 0;
    background: white;
}

.lessons-content {
    max-width: 900px;
    margin: 0 auto;
}

.key-lesson {
    font-size: 24px;
    line-height: 1.6;
    color: var(--primary);
    text-align: center;
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-bottom: 48px;
    font-style: italic;
}

.lesson-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 32px;
}

.lesson-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.lesson-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Current CTA */
.current-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #27272a 100%);
    color: white;
    text-align: center;
    position: relative;
}

.current-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.current-cta .container {
    position: relative;
    z-index: 1;
}

.current-cta h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.current-cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}


/* Enhanced Section Spacing for TXRH Page */
.case-hero,
.impact-metrics,
.financial-impact,
.platform-section,
.journey-section,
.implications-section,
.case-cta {
    padding: 100px 0;
}

/* Add visual separators between sections */
.impact-metrics,
.platform-section,
.implications-section {
    position: relative;
}

/* REMOVED: Purple divider lines
.impact-metrics:before,
.platform-section:before,
.implications-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}
*/

/* Ensure the chart container has proper spacing */
.revenue-chart {
    background: white;
    padding: 60px 40px;
    border-radius: 16px;
    margin-top: 32px;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}
/* ===================================
   MOBILE OPTIMIZATION - GLOBAL
   =================================== */

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
    display: block;
}

/* Animated hamburger to X */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Navigation Adjustments */
    .nav-container {
        position: relative;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 100;
        gap: 0;
        align-items: stretch;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 14px 8px;
        font-size: 16px;
        border-bottom: 1px solid var(--border-light);
        text-align: left;
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    .nav-cta {
        margin-top: 12px;
        width: 100%;
        text-align: center;
        padding: 14px 16px !important;
    }
    
    /* Current Impact Page Specific */
    .impact-title {
        font-size: 32px;
    }
    
    .ai-project.featured {
        grid-column: span 1;
    }
    
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    
    .current-cta h2 {
        font-size: 28px;
    }
    
    .current-cta p {
        font-size: 16px;
    }
}

/* Enhanced mobile menu for smaller screens */
@media (max-width: 480px) {
    /* Navigation */
    .nav-container {
        padding: 12px 16px;
    }
    
    .mobile-menu-toggle {
        padding: 6px;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
    }
    
    .nav-menu {
        padding: 16px;
    }
    
    .nav-menu a {
        padding: 12px 8px;
        font-size: 15px;
    }
    
    /* Current Impact Page Specific */
    .impact-title {
        font-size: 26px;
    }
    
    .current-cta h2 {
        font-size: 24px;
    }
    
    .current-cta p {
        font-size: 15px;
    }
}

/* ===================================
   DESKTOP OPTIMIZATION
   =================================== */

/* Large desktop displays (1200px+) */
@media (min-width: 1200px) {
    /* Enhanced container width for larger screens */
    .container {
        max-width: 1280px;
        padding: 0 32px;
    }
    
    /* Hero section enhanced spacing */
    .hero {
        padding: 100px 0 120px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-description {
        font-size: 22px;
    }
    
    /* Grid layouts with more columns on large screens */
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Section spacing */
    .career-impact,
    .metrics,
    .initiatives,
    .featured-brands {
        padding: 100px 0;
    }
}

/* Extra large desktop displays (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .hero-description {
        font-size: 24px;
    }
    
    /* Enhanced card layouts */
    .initiatives-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Ensure smooth scrolling on supported browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ===================================
   SECTION VISIBILITY ENHANCEMENTS
   =================================== */

/* Base section styling with enhanced separation */
section {
    position: relative;
    padding: 80px 0;
}

/* Enhanced decorative dividers between sections with gradient 
   Note: Excludes all hero section variants to maintain their full-width design */
/* REMOVED: Purple divider lines
section:not(.hero):not(.resume-header):not(.impact-hero):not(.portfolio-hero):not(.txrh-hero):not(.case-hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    opacity: 0.8;
    box-shadow: 0 2px 8px rgba(109, 40, 217, 0.2);
}
*/

/* Alternating section backgrounds for visual rhythm
   Note: Maintains consistency by excluding hero sections and special CTA sections */
section:nth-child(even):not(.hero):not(.resume-header):not(.impact-hero):not(.portfolio-hero):not(.txrh-hero):not(.executive-cta):not(.current-cta):not(.case-cta):not(.research-cta):not(.research-hero):not(.story-section):not(.financial-impact):not(.portfolio-showcase) {
    background: var(--bg-secondary);
}

section:nth-child(odd):not(.hero):not(.resume-header):not(.impact-hero):not(.portfolio-hero):not(.txrh-hero):not(.executive-cta):not(.current-cta):not(.case-cta):not(.research-cta):not(.research-hero):not(.story-section):not(.financial-impact):not(.portfolio-showcase) {
    background: var(--bg-primary);
}

/* Scroll-triggered fade-in animations */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for child elements */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-children.visible > *:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.stagger-children.visible > *:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.stagger-children.visible > *:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.stagger-children.visible > *:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.stagger-children.visible > *:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.stagger-children.visible > *:nth-child(n+6) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Enhanced section titles with improved animation and typography */
.section-title {
    position: relative;
    display: block;
    padding-bottom: 20px;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* REMOVED: Purple divider lines under section titles
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(109, 40, 217, 0.3);
}

.section-title.visible::after {
    width: 100%;
}
*/

/* Add a subtle entrance animation to section titles */
.section-title {
    animation: titleEntrance 1s ease-out;
}

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

/* Card hover effects with elevation */
.story-card,
.brand-card,
.value-card,
.metric-card,
.initiative-card,
.timeline-entry {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.story-card:hover,
.brand-card:hover,
.value-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 24px rgba(109, 40, 217, 0.15);
    border-color: var(--accent);
}

/* Subtle glow effect on interactive elements */
.btn,
.nav-cta,
.brand-badge,
.status-badge {
    position: relative;
    transition: all 0.3s ease;
}

.btn:hover,
.nav-cta:hover {
    box-shadow: 0 0 20px rgba(109, 40, 217, 0.3);
}

/* Scroll progress indicator subtle line at top of sections */
.section-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent-gradient);
    width: 0%;
    transition: width 0.3s ease-out;
}

/* Decorative corner accent for hero sections */
.hero::after,
.resume-header::after,
.impact-hero::after,
.portfolio-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 100%);
    border-radius: 0 100% 0 0;
    pointer-events: none;
}

/* Floating animation for decorative elements */
@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.hero-decoration,
.header-decoration-orb {
    animation: float-gentle 8s ease-in-out infinite;
}

.hero-decoration:nth-child(2),
.header-decoration-orb:nth-child(2) {
    animation-delay: 1s;
    animation-duration: 10s;
}

.hero-decoration:nth-child(3),
.header-decoration-orb:nth-child(3) {
    animation-delay: 2s;
    animation-duration: 12s;
}

/* Shimmer effect on stats when visible */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.stat-number,
.summary-number,
.achievement-number,
.impact-number {
    position: relative;
    overflow: hidden;
}

.stat-number::before,
.summary-number::before,
.achievement-number::before,
.impact-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

/* Smooth section transitions */
section {
    transition: background-color 0.3s ease;
}

/* Grid item stagger animation */
.metrics-grid > *,
.initiatives-grid > *,
.story-content > *,
.brands-grid > *,
.timeline-visual > *,
.value-props > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.metrics-grid.visible > *:nth-child(1),
.initiatives-grid.visible > *:nth-child(1),
.story-content.visible > *:nth-child(1),
.brands-grid.visible > *:nth-child(1),
.timeline-visual.visible > *:nth-child(1),
.value-props.visible > *:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.metrics-grid.visible > *:nth-child(2),
.initiatives-grid.visible > *:nth-child(2),
.story-content.visible > *:nth-child(2),
.brands-grid.visible > *:nth-child(2),
.timeline-visual.visible > *:nth-child(2),
.value-props.visible > *:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.metrics-grid.visible > *:nth-child(3),
.initiatives-grid.visible > *:nth-child(3),
.story-content.visible > *:nth-child(3),
.brands-grid.visible > *:nth-child(3),
.timeline-visual.visible > *:nth-child(3),
.value-props.visible > *:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.metrics-grid.visible > *:nth-child(4),
.initiatives-grid.visible > *:nth-child(4),
.story-content.visible > *:nth-child(4),
.brands-grid.visible > *:nth-child(4),
.timeline-visual.visible > *:nth-child(4),
.value-props.visible > *:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.metrics-grid.visible > *:nth-child(n+5),
.initiatives-grid.visible > *:nth-child(n+5),
.story-content.visible > *:nth-child(n+5),
.brands-grid.visible > *:nth-child(n+5),
.timeline-visual.visible > *:nth-child(n+5),
.value-props.visible > *:nth-child(n+5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* Respect reduced motion preferences - WCAG 2.1 Level AA Compliance */
@media (prefers-reduced-motion: reduce) {
    /* Disable scroll-triggered animations */
    .scroll-fade-in,
    .stagger-children > *,
    .metrics-grid > *,
    .initiatives-grid > *,
    .story-content > *,
    .brands-grid > *,
    .timeline-visual > *,
    .value-props > *,
    .section-title-animated {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Instantly show section title underlines */
    /* REMOVED: Purple divider lines
    .section-title::after {
        width: 100% !important;
        transition: none !important;
    }
    */
    
    /* Disable decorative animations */
    .hero-decoration,
    .header-decoration-orb {
        animation: none !important;
    }
    
    /* Disable number counter animations */
    .stat-number::before,
    .summary-number::before,
    .achievement-number::before,
    .impact-number::before {
        animation: none !important;
    }
    
    /* Disable entrance animations for new visual elements */
    .section-header-enhanced,
    .section-title {
        animation: none !important;
    }
    
    /* Keep hover effects but make them instant */
    .card-elevated,
    .brand-card,
    .value-card,
    .story-card {
        transition: none !important;
    }
    
    /* Disable smooth scrolling */
    html {
        scroll-behavior: auto !important;
    }
}

/* P&L Ownership Section - Graffiti Background */
.pnl-ownership-section {
    background-image: url('../assets/images/grafitti-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.pnl-ownership-section .container {
    position: relative;
    z-index: 1;
}

/* User Research & Journey Mapping */
.user-research-impact {
    padding: 80px 0;
    background: white;
}

.user-research-impact > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 32px;
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.user-research-impact .research-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
}
.user-research-impact .research-item {
    background: #fafbfc;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex: 1 1 250px;
    min-width: 220px;
}
.user-research-impact h3 {
    margin-top: 0;
    font-weight: 600;
}
.user-research-impact .research-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.user-research-impact .research-link:hover {
    text-decoration: underline;
}

/* Personas Visual Section */
.personas-visual {
    padding: 80px 0;
    background: white;
}

.personas-visual .container {
    max-width: 1200px;
    margin: 0 auto;
}

.personas-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
}

/* Research & Deliverables Page Styles */

/* Research Hero */
.research-hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #27272a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.research-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.research-hero .container {
    position: relative;
    z-index: 1;
}

.research-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.research-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.research-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.research-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Research Metrics Bar */
.research-metrics-bar {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.metric-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Filter Controls */
.research-controls {
    padding: 32px 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 60px;
    z-index: 50;
}

.controls-wrapper {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.filter-select {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-primary);
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-select:hover {
    border-color: var(--accent);
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.search-group {
    flex: 1;
    min-width: 200px;
}

.search-input {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Featured Artifacts */
.featured-artifacts {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 32px;
}

/* Artifact Cards */
.artifact-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.artifact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--accent);
}

.artifact-card.featured {
    border: 2px solid var(--accent-light);
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.artifact-preview {
    position: relative;
    padding: 0;
    background: var(--bg-secondary);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.artifact-card.featured .artifact-preview {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
}

.artifact-pdf-preview {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 8px 8px 0 0;
}

.pdf-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 100%;
    padding: 32px;
    text-align: center;
    background: white;
    transition: all 0.3s;
}

.pdf-placeholder svg {
    opacity: 0.6;
}

.pdf-placeholder .pdf-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
}

.pdf-placeholder .pdf-hint {
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.7;
}

.pdf-placeholder.type-persona {
    color: var(--accent);
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.pdf-placeholder.type-journey {
    color: #0ea5e9;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, rgba(56, 189, 248, 0.03) 100%);
}

.pdf-placeholder.type-workflow {
    color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(52, 211, 153, 0.03) 100%);
}

.pdf-placeholder.type-tool-map {
    color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, rgba(251, 191, 36, 0.03) 100%);
}

.artifact-card:hover .pdf-placeholder {
    transform: scale(1.02);
}

.pdf-preview-embed {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Add a subtle overlay to prevent interaction with PDF viewer */
.artifact-pdf-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
    transition: background 0.2s;
    z-index: 1;
}

.artifact-card:hover .artifact-pdf-preview::after {
    background: rgba(109, 40, 217, 0.03);
}

.artifact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow-md);
    color: var(--accent);
}

.artifact-icon svg {
    width: 48px;
    height: 48px;
}

.artifact-icon.type-persona {
    color: var(--accent);
    background: rgba(109, 40, 217, 0.1);
}

.artifact-icon.type-journey {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.1);
}

.artifact-icon.type-workflow {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.artifact-icon.type-tool-map {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.artifact-type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
}

.artifact-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.artifact-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.artifact-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    flex: 1;
}

.artifact-meta {
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.artifact-collection {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.artifact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Research Collections */
.research-collections {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.collection-section {
    margin-bottom: 48px;
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-light);
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    cursor: pointer;
}

.collection-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
}

.collection-toggle {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.collection-toggle:hover {
    background: var(--accent-glow);
}

.collection-section.collapsed .collection-toggle svg {
    transform: rotate(-90deg);
}

.collection-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 24px;
}

/* Research CTA */
.research-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #27272a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.research-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.research-cta .container {
    position: relative;
    z-index: 1;
}

.research-cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.research-cta p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modal Styles */
.artifact-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    border: none;
    font-size: 32px;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s;
    box-shadow: var(--shadow-md);
}

.modal-close:hover {
    background: var(--accent);
    color: white;
}

.modal-header {
    padding: 32px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.modal-body {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
}

.pdf-preview {
    width: 100%;
}

.pdf-preview iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
    background: var(--bg-secondary);
}

.preview-note {
    margin-top: 16px;
    padding: 16px;
    background: rgba(109, 40, 217, 0.05);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.artifact-details {
    text-align: center;
    padding: 40px;
}

.artifact-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.artifact-icon-large.persona {
    background: rgba(109, 40, 217, 0.1);
    color: var(--accent);
}

.artifact-icon-large.journey {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
}

.artifact-icon-large.workflow {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.artifact-icon-large.tool-map {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Responsive Design for Research Page */
@media (max-width: 768px) {
    .research-title {
        font-size: 32px;
    }
    
    .research-subtitle {
        font-size: 16px;
    }
    
    .research-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .controls-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .featured-grid,
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .research-cta h2 {
        font-size: 28px;
    }
    
    .artifact-actions {
        flex-direction: column;
    }
    
    .modal-container {
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 24px;
    }
    
    .pdf-preview iframe {
        height: 400px;
    }
}

/* ===================================================================
   VISUAL SECTION SEPARATION ENHANCEMENTS
   Enhanced visual elements for improved section separation and UX
   =================================================================== */

/* Horizontal gradient dividers between sections */
/* REMOVED: Purple divider lines - no longer used
.section-divider {
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    margin: 0;
    border: none;
    border-radius: 2px;
    opacity: 0.8;
}

.section-divider.subtle {
    height: 2px;
    opacity: 0.5;
}

.section-divider.bold {
    height: 6px;
    opacity: 1;
}
*/

/* Accent color band at top of sections */
/* REMOVED: Purple divider lines
.section-accent-band {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    z-index: 1;
}
*/

/* Apply accent bands to key sections */
/* REMOVED: Purple divider lines
.career-impact::before,
.featured-brands::before,
.user-research-impact::before,
.ai-automation::before,
.executive-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    z-index: 1;
}
*/

/* Wave SVG separator - top wave */
.wave-separator-top {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    margin: 0;
    padding: 0;
}

.wave-separator-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    margin: 0;
}

.wave-separator-top .shape-fill {
    fill: var(--bg-secondary);
}

/* Wave SVG separator - bottom wave */
.wave-separator-bottom {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.wave-separator-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    margin: 0;
}

.wave-separator-bottom .shape-fill {
    fill: var(--accent);
}

/* Angled separator for dynamic transitions */
.angle-separator {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.angle-separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
    margin: 0;
}

.angle-separator .shape-fill {
    fill: var(--bg-primary);
}

/* Image-based Section Divider Component */
/* Usage: <div class="image-section-divider">
            <div class="divider-content">
                <p class="divider-copy-top">Optional copy above image</p>
                <div class="divider-image-container">
                    <img src="path/to/image.png" alt="Description">
                </div>
                <p class="divider-copy-bottom">Optional copy below image</p>
            </div>
          </div>
*/
.image-section-divider {
    width: 100%;
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.image-section-divider .divider-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.image-section-divider .divider-copy-top,
.image-section-divider .divider-copy-bottom {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.image-section-divider .divider-copy-top {
    margin-bottom: 32px;
}

.image-section-divider .divider-copy-bottom {
    margin-top: 32px;
}

.image-section-divider .divider-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.image-section-divider .divider-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: block;
}

/* Responsive adjustments for image divider */
@media (max-width: 768px) {
    .image-section-divider {
        padding: 60px 0;
    }
    
    .image-section-divider .divider-copy-top,
    .image-section-divider .divider-copy-bottom {
        font-size: 16px;
    }
    
    .image-section-divider .divider-copy-top {
        margin-bottom: 24px;
    }
    
    .image-section-divider .divider-copy-bottom {
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .image-section-divider {
        padding: 40px 0;
    }
    
    .image-section-divider .divider-copy-top {
        margin-bottom: 16px;
    }
    
    .image-section-divider .divider-copy-bottom {
        margin-top: 16px;
    }
}

/* Variant: Dark background */
.image-section-divider.dark {
    background: var(--bg-dark);
}

.image-section-divider.dark .divider-copy-top,
.image-section-divider.dark .divider-copy-bottom {
    color: var(--text-light);
}

/* Variant: Compact spacing */
.image-section-divider.compact {
    padding: 48px 0;
}

.image-section-divider.compact .divider-copy-top {
    margin-bottom: 20px;
}

.image-section-divider.compact .divider-copy-bottom {
    margin-top: 20px;
}

/* Variant: Wide image (full bleed on larger screens) */
.image-section-divider.wide .divider-image-container {
    max-width: 100%;
}

.image-section-divider.wide .divider-image-container img {
    max-width: 1400px;
    width: 100%;
}

/* Variant: Full-bleed edge-to-edge divider */
.image-section-divider.full-bleed {
    padding: 0;
    background: #000000;
    margin: 0;
}

.image-section-divider.full-bleed .divider-content {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.image-section-divider.full-bleed .divider-image-container {
    margin: 0;
    max-width: 100%;
}

.image-section-divider.full-bleed .divider-image-container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

/* Enhanced section headers with animation */
.section-header-enhanced {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    animation: fadeInDown 0.8s ease-out;
}

.section-header-enhanced h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header-enhanced p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced card elevation for featured blocks */
.card-elevated {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 
        0 2px 4px rgba(31, 35, 40, 0.04),
        0 4px 8px rgba(31, 35, 40, 0.08),
        0 8px 16px rgba(31, 35, 40, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
}

.card-elevated:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 4px 8px rgba(31, 35, 40, 0.08),
        0 8px 16px rgba(31, 35, 40, 0.12),
        0 16px 32px rgba(31, 35, 40, 0.16),
        0 0 0 1px var(--accent);
}

/* Apply elevation to existing featured content */
.brand-card,
.value-card,
.story-card,
.metric-card,
.initiative-card {
    box-shadow: 
        0 2px 4px rgba(31, 35, 40, 0.04),
        0 4px 8px rgba(31, 35, 40, 0.08);
}

.brand-card:hover,
.value-card:hover,
.story-card:hover {
    box-shadow: 
        0 8px 16px rgba(31, 35, 40, 0.12),
        0 16px 32px rgba(31, 35, 40, 0.16),
        0 0 0 1px var(--accent);
}

/* Gradient overlay for depth on dark sections */
.section-gradient-overlay {
    position: relative;
}

.section-gradient-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, var(--accent-glow) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.6;
}

/* Enhanced section title with slide-in animation */
.section-title-animated {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-title-animated.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Decorative dots pattern for section backgrounds */
.section-dots-pattern {
    position: relative;
}

.section-dots-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, var(--accent-glow) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

/* Responsive adjustments for visual enhancements */
@media (max-width: 768px) {
    .wave-separator-top svg,
    .wave-separator-bottom svg {
        height: 40px;
    }
    
    .angle-separator svg {
        height: 30px;
    }
    
    .section-header-enhanced h2 {
        font-size: 32px;
    }
    
    .section-header-enhanced p {
        font-size: 16px;
    }
    
    .card-elevated {
        padding: 24px;
    }
    
    .section-dots-pattern::after {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .wave-separator-top svg,
    .wave-separator-bottom svg {
        height: 30px;
    }
    
    .angle-separator svg {
        height: 20px;
    }
    
    .section-header-enhanced h2 {
        font-size: 28px;
    }
    
    .card-elevated {
        padding: 20px;
    }
}


}

/* Systems Narrative Section - Premium Polish */
.systems-narrative {
    background: #ffffff;
    padding: 120px 24px;
}

.systems-narrative .section-title {
    color: var(--text-primary);
    margin-bottom: 24px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Narrative Flow Layout */
.narrative-flow {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 40px;
}

.narrative-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.narrative-left {
    flex: 0 0 auto;
}

.narrative-right {
    flex: 1;
}

/* Card Base Styling */
.narrative-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e1e7ec;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.narrative-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.narrative-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    margin-bottom: 16px;
    margin-top: 24px;
}

.narrative-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.narrative-card p:last-child {
    margin-bottom: 0;
}

.narrative-card strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Card Variants */
.card-problem {
    background: #ffffff;
}

.card-system {
    background: #ffffff;
}

.card-adoption {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

/* Adoption Metrics */
.adoption-metrics {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e1e7ec;
}

.adoption-metric {
    flex: 1;
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.8px;
}

/* Outcomes List */
.outcome-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outcome-list li {
    padding: 8px 0 8px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    position: relative;
}

.outcome-list li:before {
    content: '↳';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Thesis Card */
.card-proves {
    background: #7c3aed;
    color: white;
    border: 1px solid #c4b5fd;
    border-top: 3px solid #c4b5fd;
    padding: 60px 48px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(109, 40, 217, 0.1);
}

.card-proves h3 {
    color: white;
    margin-bottom: 16px;
    font-size: 22px;
}

.card-proves p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Full Width Card */
.card-full-width {
    grid-column: 1 / -1;
}

/* Responsive: Tablet (1024px and below) */
@media (max-width: 1024px) {
    .narrative-flow {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .narrative-column {
        gap: 24px;
    }
    
    .systems-narrative {
        padding: 100px 24px;
    }
}

/* Responsive: Mobile (768px and below) */
@media (max-width: 768px) {
    .systems-narrative {
        padding: 80px 20px;
    }
    
    .narrative-flow {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .narrative-column {
        gap: 20px;
    }
    
    .narrative-card {
        padding: 24px;
    }
    
    .narrative-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .narrative-card h4 {
        font-size: 14px;
        margin-top: 16px;
    }
    
    .narrative-card p {
        font-size: 14px;
    }
    
    .adoption-metrics {
        flex-direction: row;
        gap: 16px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    
    .metric-number {
        font-size: 40px;
    }
    
    .metric-label {
        font-size: 10px;
    }
    
    .outcome-list li {
        font-size: 14px;
        padding: 6px 0 6px 18px;
    }
    
    .card-proves {
        padding: 40px 24px;
    }
    
    .card-proves h3 {
        font-size: 18px;
    }
    
    .card-proves p {
        font-size: 16px;
    }
}

/* Responsive: Small Mobile (480px and below) */
@media (max-width: 480px) {
    .systems-narrative {
        padding: 60px 16px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .narrative-flow {
        gap: 16px;
    }
    
    .narrative-card {
        padding: 20px;
    }
    
    .adoption-metrics {
        gap: 12px;
        padding-bottom: 12px;
    }
    
    .metric-number {
        font-size: 36px;
    }
    
    .card-proves {
        padding: 32px 20px;
    }
}

/* About Me Section */
.about-me-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f9fafb 100%);
    position: relative;
}

.about-me-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(circle at 50% 0%, rgba(109, 40, 217, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}

.about-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 8px 20px;
    background: var(--accent-glow);
    border-radius: 20px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 32px;
    position: relative;
}

.about-intro-card {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    border-left: 4px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(109, 40, 217, 0.15);
}

.intro-icon {
    font-size: 48px;
    line-height: 1;
    flex-shrink: 0;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.intro-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-philosophy {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #27272a 100%);
    padding: 48px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.about-philosophy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
}

.philosophy-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.philosophy-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
}

.approach-section {
    margin-top: 24px;
}

.approach-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 24px;
}

.approach-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.approach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-top-color: var(--accent);
}

.approach-icon {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1;
}

.approach-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.approach-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.about-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 24px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.badge-icon {
    font-size: 18px;
}

.footer-text {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
}

.career-timeline {
    margin-top: 24px;
    padding: 64px 48px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.career-timeline h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 8px;
}

.timeline-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-style: italic;
}

.timeline-graphic {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Navigation CTA Buttons */
.navigation-cta-buttons {
    padding: 0 24px 80px 24px;
    margin: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.cta-button-link {
    display: block;
    line-height: 0;
    margin: 0 auto;
    padding: 0;
    cursor: pointer;
    max-width: 1200px;
    width: 100%;
    transition: all 0.3s ease;
}

.cta-button-link:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

.cta-button-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
    vertical-align: bottom;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-button-link:hover .cta-button-image {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 24px rgba(109, 40, 217, 0.25);
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .cta-button-image {
        transition: none;
    }
    
    .cta-button-link:hover .cta-button-image {
        transform: none;
    }
}

/* Responsive adjustments for CTA buttons */
@media (max-width: 768px) {
    .navigation-cta-buttons {
        padding: 0 20px 60px 20px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .navigation-cta-buttons {
        padding: 0 16px 40px 16px;
        gap: 8px;
    }
}

/* Responsive design for about-me section */
@media (max-width: 768px) {
    .about-me-section {
        padding: 60px 0;
    }
    
    .about-header {
        margin-bottom: 48px;
    }
    
    .about-content {
        gap: 32px;
        margin-bottom: 24px;
    }
    
    .about-intro-card {
        flex-direction: column;
        padding: 32px 24px;
        gap: 16px;
    }
    
    .intro-icon {
        font-size: 36px;
    }
    
    .intro-text {
        font-size: 18px;
    }
    
    .about-philosophy {
        padding: 32px 24px;
    }
    
    .philosophy-title {
        font-size: 22px;
    }
    
    .philosophy-text {
        font-size: 16px;
    }
    
    .approach-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .approach-card {
        padding: 24px;
    }
    
    .approach-icon {
        font-size: 32px;
    }
    
    .approach-card h4 {
        font-size: 17px;
    }
    
    .approach-card p {
        font-size: 15px;
    }
    
    .about-footer {
        padding: 24px 20px;
    }
    
    .footer-text {
        font-size: 14px;
    }
    
    .career-timeline {
        margin-top: 20px;
        padding: 40px 24px;
    }
    
    .career-timeline h3 {
        font-size: 26px;
    }
    
    .timeline-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
}
