* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Helvetica Neue",
        Arial,
        sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fafafa;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
}

.site-header {
    background: #111827;
    color: #f9fafb;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.logo img {
    height: 32px;
}

.nav a {
    margin-left: 16px;
    font-size: 0.95rem;
}

.nav a:hover {
    text-decoration: underline;
}

.hero {
    background: #111827;
    color: #f9fafb;
    padding: 80px 0 64px;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 12px;
}

.features {
    padding: 48px 0 64px;
    background: #ffffff;
}

.features h2 {
    margin-bottom: 24px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.grid article {
    background: #f9fafb;
    border-radius: 8px;
    padding: 16px 20px;
}

.site-footer {
    border-top: 1px solid #e5e7eb;
    padding: 16px 0;
    font-size: 0.8rem;
    color: #6b7280;
    background: #f9fafb;
}

.mission {
    padding: 48px 0 64px;
    background: #f3f4f6;
}

.mission h2 {
    margin-bottom: 16px;
}

.mission p {
    max-width: 720px;
}

.fiction-disclaimer {
    margin-top: 8px;
}

.fiction-banner {
    display: block;
    width: 100%;
}
