:root {
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --accent: #c44536;
    --bg: #fafaf8;
    --border: #e5e5e0;
}

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

body {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 21px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

header {
    margin-bottom: 80px;
    animation: slideDown 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

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

h1 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 24px;
    color: var(--text-secondary);
    font-weight: 400;
}

.photo-container {
    margin: 60px 0;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.4s;
}

.photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--border);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: var(--text-secondary);
}

.photo-hero {
    margin: 20px 0 32px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.35s;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
}

section {
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

section:nth-of-type(1) { animation-delay: 0.5s; }
section:nth-of-type(2) { animation-delay: 0.6s; }
section:nth-of-type(3) { animation-delay: 0.7s; }
section:nth-of-type(4) { animation-delay: 0.8s; }

h2 {
    font-size: 16px;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 500;
}

p {
    margin-bottom: 20px;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

a:hover {
    border-bottom-color: var(--accent);
}

.links {
    list-style: none;
    margin-top: 24px;
}

.links li {
    margin-bottom: 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
}

.links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.links a::before {
    content: '→';
    font-size: 18px;
    transition: transform 0.2s ease;
}

.links a:hover::before {
    transform: translateX(4px);
}

.highlight {
    background: linear-gradient(to bottom, transparent 60%, rgba(196, 69, 54, 0.15) 60%);
    padding: 0 4px;
}

.companies {
    display: flex;
    gap: 32px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.company {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
}

.content {
    margin-top: 20px;
}

.content ul {
    margin: 0 0 20px 20px;
}

.content li {
    margin-bottom: 10px;
}

.content li:last-child {
    margin-bottom: 0;
}

.back-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.careers-note {
    margin-top: 40px;
}

footer {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    font-size: 16px;
    font-family: 'IBM Plex Mono', monospace;
    color: var(--text-secondary);
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.9s;
}

@media (max-width: 640px) {
    .container {
        padding: 40px 20px 60px;
    }

    h1 {
        font-size: 38px;
    }

    .tagline {
        font-size: 20px;
    }

    body {
        font-size: 19px;
    }

    .photo {
        width: 140px;
        height: 140px;
    }
}
