* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at 50% 0%, #ffffff 0%, #edf2f8 52%, #e2e8f0 100%);
    color: #0f172a;
    padding: 1.2rem;
}

.page-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.1rem;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.brand-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #06b6d4;
}

.brand-text {
    font-weight: 800;
    color: #0f172a;
    font-size: 1.2rem;
}

nav {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    border: 1px solid rgba(15, 23, 42, 0.22);
    border-radius: 10px;
    color: #0f172a;
    padding: 8px 12px;
    font-weight: 600;
    background: #fff;
    font-size: 0.9rem;
}

article {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 16px;
    padding: 1.2rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.45rem;
}

h2 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
}

p, li {
    color: #334155;
    line-height: 1.5;
}

ul {
    margin-left: 1.2rem;
}

.small {
    color: #64748b;
    font-size: 0.86rem;
}

.site-footer {
    margin-top: 0.9rem;
    text-align: center;
    color: #475569;
    font-size: 0.86rem;
    padding-bottom: 0.4rem;
}

.site-footer a {
    color: #0f4fa8;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
}

.site-footer a:hover {
    text-decoration: underline;
}
