body {
    margin: 0;
    color: #f8fafc;
    background: #090c12 url('assets/bg.png') center / cover fixed no-repeat;
    font-family: Inter, Arial, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

.page-backdrop {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(9, 12, 18, 0.94), rgba(13, 18, 28, 0.88));
}

.page-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 48px;
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 48px;
}

.brand-link img {
    width: 190px;
    max-width: 48vw;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-links a,
.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.78);
    color: #f8fafc;
    text-decoration: none;
    font-weight: 700;
}

.button-link.primary {
    border-color: rgba(239, 35, 60, 0.72);
    background: linear-gradient(180deg, #ef233c, #b60f24);
}

.hero {
    max-width: 860px;
    margin-bottom: 34px;
}

.eyebrow {
    margin: 0 0 10px;
    color: #35c6ff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

h1 {
    margin: 0 0 16px;
    font-size: clamp(2.1rem, 5vw, 4.4rem);
    line-height: 1;
    letter-spacing: 0;
}

.lead {
    max-width: 760px;
    margin: 0;
    color: #dbeafe;
    font-size: 1.1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.content-panel,
.update-item {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(9, 12, 18, 0.82);
    padding: 22px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.content-panel h2,
.update-item h2 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    letter-spacing: 0;
}

.content-panel h3 {
    margin: 20px 0 8px;
    font-size: 1.05rem;
    letter-spacing: 0;
}

.content-panel p,
.content-panel li,
.update-item p {
    color: #dbeafe;
}

.content-panel img,
.update-item img {
    max-width: 100%;
    height: auto;
}

.stack {
    display: grid;
    gap: 18px;
}

.meta {
    margin: 0 0 12px;
    color: #94a3b8;
    font-size: 0.92rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.site-footer {
    margin-top: 38px;
    color: #94a3b8;
    font-size: 0.92rem;
}

@media (max-width: 780px) {
    .top-nav {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 32px;
    }

    .nav-links {
        justify-content: flex-start;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}
