@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #0a0a0a;
            --accent: #ff6b35;
            --light: #f7f7f7;
            --gray: #666;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--primary);
            background: white;
            overflow-x: hidden;
        }
        
        .top-nav {
            padding: 20px;
            text-align: center;
            font-size: 0.95rem;
        }
        
        .top-nav a {
            color: var(--gray);
            text-decoration: none;
            padding: 5px 10px;
            transition: color 0.3s ease;
        }
        
        .top-nav a:hover,
        .top-nav a.active {
            color: var(--primary);
        }
        
        .nav-divider {
            color: var(--gray);
            opacity: 0.5;
            margin: 0 5px;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        header {
            margin-bottom: 80px;
            position: relative;
        }
        
        .name {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }
        
        .tagline {
            font-size: 1.25rem;
            color: var(--gray);
            font-weight: 300;
        }
        
        .accent-bar {
            position: absolute;
            left: -40px;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--accent);
        }
        
        .contact {
            margin: 40px 0;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .contact a {
            color: var(--primary);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s ease;
        }
        
        .contact a:hover {
            border-bottom-color: var(--accent);
        }
        
        .bio-trigger {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%) rotate(-90deg);
            transform-origin: right center;
            background: var(--primary);
            color: white;
            padding: 10px 20px;
            border: none;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 100;
            font-family: inherit;
        }
        
        .bio-trigger:hover {
            background: var(--accent);
            padding-right: 25px;
        }
        
        .bio-panel {
            position: fixed;
            right: -500px;
            top: 0;
            width: 500px;
            height: 100vh;
            background: var(--light);
            padding: 60px 40px;
            overflow-y: auto;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            z-index: 200;
        }
        
        .bio-panel.active {
            right: 0;
        }
        
        .bio-panel h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .close-bio {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray);
            transition: color 0.3s ease;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .close-bio:hover {
            color: var(--primary);
        }
        
        .bio-panel p {
            margin-bottom: 1.2rem;
            color: #333;
            line-height: 1.8;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 150;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        section {
            margin-bottom: 60px;
        }
        
        h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 600;
            color: var(--primary);
        }
        
        .expertise {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .expertise-item {
            padding: 20px;
            background: var(--light);
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .expertise-item:hover {
            transform: translateY(-2px);
        }
        
        .expertise-item h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--accent);
        }
        
        .journey {
            position: relative;
            padding-left: 30px;
        }
        
        .journey::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            bottom: 10px;
            width: 2px;
            background: var(--light);
        }
        
        .journey-item {
            position: relative;
            margin-bottom: 30px;
        }
        
        .journey-item::before {
            content: '';
            position: absolute;
            left: -31px;
            top: 8px;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
        }
        
        .journey-item h3 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .journey-item .date {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        @media print {
            body {
                font-size: 11pt;
            }
            
            .bio-trigger {
                display: none;
            }
            
            .accent-bar {
                display: none;
            }
            
            .expertise-item {
                background: white;
                border: 1px solid #ddd;
            }
        }
        
        @media (max-width: 768px) {
            .bio-panel {
                width: 100%;
                right: -100%;
            }
            
            .bio-trigger {
                right: 20px;
                transform: translateY(-50%);
                writing-mode: horizontal-tb;
            }
        }
        
        .writing-list {
            margin: 40px 0;
        }
        
        .writing-item {
            padding: 30px;
            background: var(--light);
            border-radius: 8px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .writing-item:hover {
            transform: translateY(-2px);
        }
        
        .writing-item h2 {
            color: var(--accent);
            margin-bottom: 10px;
        }
        
        .writing-item .date {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .email-link {
            color: var(--primary);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s ease;
        }
        
        .email-link:hover {
            border-bottom-color: var(--accent);
        }
        
        main.container {
            padding-top: 20px;
        }
        
        footer {
            text-align: center;
            padding: 40px 20px;
            color: var(--gray);
            font-size: 0.9rem;
            border-top: 1px solid var(--light);
            margin-top: 60px;
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 40px 20px;
            }
            
            .accent-bar {
                left: -20px;
            }
        }

