/* =========================
   Global Reset & Base
========================= */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
    background-color: #0f0f0f;
    color: #eaeaea;
    line-height: 1.6;
}

/* =========================
   Header
========================= */

header {
    padding: 40px 20px;
    border-bottom: 1px solid #222;
    max-width: 1100px;
    margin: 0 auto;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    width: 44px;
    height: 44px;
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tagline {
    margin-top: 14px;
    font-size: 0.95rem;
    color: #bdbdbd;
    max-width: 900px;
}

/* =========================
   Hiring Page Layout
========================= */

.hiring-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hiring-hero h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hiring-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
}

/* =========================
   Manifesto Block
========================= */

.hiring-manifesto {
    margin-top: 48px;
    font-size: 1rem;
}

.hiring-manifesto p {
    margin-bottom: 20px;
    max-width: 800px;
}

.hiring-manifesto strong {
    color: #ffffff;
}

/* =========================
   Instructions Box
========================= */

.hiring-instructions {
    background-color: #161616;
    border-left: 3px solid #ffffff;
    padding: 20px 24px;
    margin: 30px 0;
}

.hiring-instructions a {
    color: #ffffff;
    text-decoration: underline;
}

.hiring-instructions a:hover {
    opacity: 0.85;
}

/* =========================
   Questions
========================= */

.question-intro {
    margin-top: 30px;
    font-weight: 600;
}

.hiring-questions {
    margin-top: 16px;
    padding-left: 22px;
}

.hiring-questions li {
    margin-bottom: 22px;
}

.hiring-questions strong {
    display: block;
    margin-bottom: 6px;
}

/* =========================
   Closing
========================= */

.closing-note {
    margin-top: 36px;
    font-style: italic;
    color: #cfcfcf;
}

/* =========================
   Footer
========================= */

footer {
    border-top: 1px solid #222;
    padding: 40px 20px;
    margin-top: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

footer p {
    font-size: 0.85rem;
    color: #9a9a9a;
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #ffffff;
}
