/* Reset minimal essentials */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Dark theme colors */
:root {
    --bg: #0b0e13;
    --fg: #e5e7eb;
    --muted: #9ca3af;
    --accent: #7dd3fc;
    --border: #1f2937;
}

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem 1rem;
}

.logo {
    width: 300px;
    max-width: 90%;
    height: auto;
    margin-bottom: 2rem;
    display: block;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: lowercase;
}

nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    color: var(--fg);
    text-decoration: none;
    font-size: 1.1rem;
}

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

main {
    max-width: 65ch;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.content-section {
    margin-bottom: 4rem;
    scroll-margin-top: 2rem;
}

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

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: lowercase;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.content-section p {
    margin-bottom: 1.5rem;
}

.job-posting {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.job-posting:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.job-posting p {
    margin-bottom: 1rem;
}

.job-meta {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.job-posting strong {
    color: var(--accent);
    font-weight: 600;
}

.coming-soon {
    color: var(--muted);
    font-style: italic;
}

.content-section a {
    color: var(--accent);
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .logo {
        width: 250px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    nav {
        gap: 1.5rem;
    }

    nav a {
        font-size: 1rem;
    }

    main {
        padding: 3rem 1rem;
    }
}
