@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --void-black: #0f0f0f;
    --pure-black: #000000;
    --charcoal: #2c2c2c;
    --pure-white: #ffffff;
    --ghost-white: rgba(255,255,255,0.6);
    --whisper-white: rgba(255,255,255,0.5);
    --phantom-white: rgba(255,255,255,0.2);
    --muted-smoke: #444444;
    --composio-cobalt: #0007cd;
    --electric-cyan: #00ffff;
    --signal-blue: #0089ff;
    --ocean-blue: #0096ff;
    --border-mist-12: rgba(255,255,255,0.12);
    --border-mist-10: rgba(255,255,255,0.10);
    --border-mist-08: rgba(255,255,255,0.08);
    --border-mist-06: rgba(255,255,255,0.06);
    --border-mist-04: rgba(255,255,255,0.04);
    --font-sans: 'ui-sans-serif', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'ui-monospace', 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--void-black);
    color: var(--pure-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── NAV ─────────────────────────────────────────── */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--void-black);
    border-bottom: 1px solid var(--border-mist-06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 32px;
}

.nav-logo {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--pure-white);
    letter-spacing: -0.32px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 1rem;
    color: var(--ghost-white);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--pure-white);
}

.nav-cta {
    background: var(--pure-white);
    color: oklch(0.145 0 0) !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.nav-cta:hover {
    opacity: 0.88;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--pure-white);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--void-black);
    border-top: 1px solid var(--border-mist-06);
    padding: 16px 0;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    display: block;
    padding: 10px 24px;
    color: var(--ghost-white);
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-mobile a:hover {
    color: var(--pure-white);
}

/* ─── HERO ────────────────────────────────────────── */

.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background: var(--void-black);
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(0,255,255,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.hero-overline {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--electric-cyan);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    line-height: 0.87;
    color: var(--pure-white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--ghost-white);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 40px;
}

.hero-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--whisper-white);
    letter-spacing: 0.3px;
}

/* ─── SECTION HEADERS ─────────────────────────────── */

.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--whisper-white);
    margin-bottom: 12px;
}

.section-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.0;
    color: var(--pure-white);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--ghost-white);
    line-height: 1.6;
    max-width: 560px;
}

/* ─── ARTICLES GRID ───────────────────────────────── */

.articles-section {
    padding: 80px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.article-card {
    background: var(--pure-black);
    border: 1px solid var(--border-mist-10);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s;
    box-shadow: rgba(0,0,0,0.15) 4px 4px 0px 0px;
}

.article-card:hover {
    border-color: var(--border-mist-12);
}

.article-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.article-card-body {
    padding: 24px;
}

.article-card-tag {
    font-family: var(--font-mono);
    font-size: 0.69rem;
    font-weight: 400;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    color: var(--electric-cyan);
    margin-bottom: 10px;
}

.article-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--pure-white);
    margin-bottom: 10px;
}

.article-card-excerpt {
    font-size: 0.875rem;
    color: var(--ghost-white);
    line-height: 1.63;
    margin-bottom: 20px;
}

.article-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-card-date {
    font-family: var(--font-mono);
    font-size: 0.69rem;
    color: var(--whisper-white);
    letter-spacing: 0.45px;
}

.read-more {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--signal-blue);
    letter-spacing: -0.28px;
    transition: color 0.2s;
}

.read-more:hover {
    color: var(--electric-cyan);
}

/* ─── FEATURED STAT BAR ───────────────────────────── */

.stats-bar {
    padding: 48px 0;
    border-top: 1px solid var(--border-mist-06);
    border-bottom: 1px solid var(--border-mist-06);
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.98px;
    color: var(--pure-white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number span {
    color: var(--electric-cyan);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--ghost-white);
    line-height: 1.4;
}

/* ─── ARTICLE PAGE ────────────────────────────────── */

.article-header {
    padding: 80px 0 48px;
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -100px;
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(0,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--whisper-white);
}

.article-breadcrumb a {
    color: var(--whisper-white);
    transition: color 0.2s;
}

.article-breadcrumb a:hover {
    color: var(--pure-white);
}

.article-breadcrumb-sep {
    color: var(--border-mist-12);
}

.article-category {
    font-family: var(--font-mono);
    font-size: 0.69rem;
    font-weight: 400;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--electric-cyan);
    margin-bottom: 16px;
}

.article-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.0;
    color: var(--pure-white);
    margin-bottom: 20px;
    max-width: 780px;
}

.article-meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--whisper-white);
    margin-bottom: 48px;
}

.article-meta-row span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-hero-img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-mist-08);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    padding: 60px 0 80px;
    align-items: start;
}

.article-body {
    min-width: 0;
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--pure-white);
    margin: 40px 0 16px;
}

.article-body h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--pure-white);
    margin: 28px 0 12px;
}

.article-body p {
    font-size: 0.9375rem;
    color: var(--ghost-white);
    line-height: 1.75;
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.article-body li {
    font-size: 0.9375rem;
    color: var(--ghost-white);
    line-height: 1.75;
    margin-bottom: 8px;
}

.article-body strong {
    color: var(--pure-white);
    font-weight: 500;
}

.article-body a {
    color: var(--signal-blue);
    text-decoration: underline;
    text-decoration-color: rgba(0,137,255,0.4);
    transition: color 0.2s;
}

.article-body a:hover {
    color: var(--electric-cyan);
}

.article-body .tip-box {
    background: var(--pure-black);
    border: 1px solid var(--border-mist-10);
    border-left: 3px solid var(--electric-cyan);
    border-radius: 4px;
    padding: 20px 24px;
    margin: 28px 0;
}

.article-body .tip-box p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.article-body .data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 0.875rem;
}

.article-body .data-table th {
    background: var(--pure-black);
    border: 1px solid var(--border-mist-10);
    padding: 12px 16px;
    text-align: left;
    color: var(--pure-white);
    font-weight: 500;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.article-body .data-table td {
    border: 1px solid var(--border-mist-06);
    padding: 12px 16px;
    color: var(--ghost-white);
}

.article-body .data-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

/* ─── SIDEBAR ─────────────────────────────────────── */

.article-sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-card {
    background: var(--pure-black);
    border: 1px solid var(--border-mist-10);
    border-radius: 4px;
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-card-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--whisper-white);
    margin-bottom: 16px;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-links a {
    font-size: 0.875rem;
    color: var(--ghost-white);
    line-height: 1.4;
    transition: color 0.2s;
    border-left: 2px solid transparent;
    padding-left: 10px;
    display: block;
}

.sidebar-links a:hover {
    color: var(--pure-white);
    border-left-color: var(--electric-cyan);
}

.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    counter-reset: toc;
}

.toc-list a {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--whisper-white);
    letter-spacing: -0.28px;
    transition: color 0.2s;
}

.toc-list a:hover {
    color: var(--electric-cyan);
}

/* ─── PAGES ───────────────────────────────────────── */

.page-header {
    padding: 80px 0 48px;
}

.page-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.0;
    color: var(--pure-white);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--ghost-white);
    line-height: 1.6;
    max-width: 560px;
}

.page-content {
    max-width: 720px;
    padding-bottom: 80px;
}

.page-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--pure-white);
    margin: 36px 0 12px;
}

.page-content h3 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--pure-white);
    margin: 24px 0 10px;
}

.page-content p {
    font-size: 0.9375rem;
    color: var(--ghost-white);
    line-height: 1.75;
    margin-bottom: 16px;
}

.page-content ul, .page-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.page-content li {
    font-size: 0.9375rem;
    color: var(--ghost-white);
    line-height: 1.75;
    margin-bottom: 6px;
}

.page-content a {
    color: var(--signal-blue);
    text-decoration: underline;
    text-decoration-color: rgba(0,137,255,0.4);
}

.page-content strong {
    color: var(--pure-white);
    font-weight: 500;
}

/* ─── CONTACT FORM ────────────────────────────────── */

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--pure-white);
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 0.9375rem;
    color: var(--ghost-white);
    line-height: 1.75;
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-detail-label {
    font-family: var(--font-mono);
    font-size: 0.69rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.55px;
    color: var(--whisper-white);
}

.contact-detail-value {
    font-size: 0.9375rem;
    color: var(--ghost-white);
}

.contact-detail-value a {
    color: var(--signal-blue);
    transition: color 0.2s;
}

.contact-detail-value a:hover {
    color: var(--electric-cyan);
}

.contact-form {
    background: var(--pure-black);
    border: 1px solid var(--border-mist-10);
    border-radius: 4px;
    padding: 32px;
}

.form-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--pure-white);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.69rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.55px;
    color: var(--whisper-white);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-mist-10);
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 0.9375rem;
    color: var(--pure-white);
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.2s;
}

.form-input::placeholder {
    color: var(--whisper-white);
}

.form-input:focus {
    border-color: var(--signal-blue);
}

.form-submit {
    width: 100%;
    background: var(--pure-white);
    color: oklch(0.145 0 0);
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 8px;
}

.form-submit:hover {
    opacity: 0.88;
}

.form-success {
    display: none;
    background: rgba(0,255,255,0.08);
    border: 1px solid var(--border-mist-10);
    border-left: 3px solid var(--electric-cyan);
    border-radius: 4px;
    padding: 16px 20px;
    font-size: 0.875rem;
    color: var(--ghost-white);
    margin-top: 16px;
}

/* ─── ABOUT ───────────────────────────────────────── */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding-bottom: 80px;
    align-items: start;
}

.about-text h2 {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--pure-white);
    margin: 36px 0 12px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 0.9375rem;
    color: var(--ghost-white);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-facts {
    background: var(--pure-black);
    border: 1px solid var(--border-mist-10);
    border-radius: 4px;
    padding: 32px;
    position: sticky;
    top: 80px;
}

.about-facts-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--whisper-white);
    margin-bottom: 20px;
}

.fact-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-mist-06);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fact-label {
    font-family: var(--font-mono);
    font-size: 0.69rem;
    text-transform: uppercase;
    letter-spacing: 0.55px;
    color: var(--whisper-white);
}

.fact-value {
    font-size: 0.875rem;
    color: var(--ghost-white);
}

/* ─── DIVIDER ─────────────────────────────────────── */

.divider {
    height: 1px;
    background: var(--border-mist-06);
}

/* ─── FOOTER ──────────────────────────────────────── */

.site-footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border-mist-08);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, rgba(255,255,255,0.03), transparent);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-name {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--pure-white);
    letter-spacing: -0.32px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--ghost-white);
    line-height: 1.6;
    max-width: 260px;
}

.footer-col-title {
    font-family: var(--font-mono);
    font-size: 0.69rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.55px;
    color: var(--whisper-white);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--ghost-white);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--pure-white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border-mist-06);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-family: var(--font-mono);
    font-size: 0.69rem;
    color: var(--whisper-white);
    letter-spacing: 0.3px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-family: var(--font-mono);
    font-size: 0.69rem;
    color: var(--whisper-white);
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--pure-white);
}

/* ─── COOKIE BANNER ───────────────────────────────── */

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 560px;
    background: var(--pure-black);
    border: 1px solid var(--border-mist-12);
    border-radius: 4px;
    padding: 20px 24px;
    display: none;
    z-index: 9999;
    box-shadow: rgba(0,0,0,0.5) 0px 8px 32px;
}

.cookie-banner.visible {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.875rem;
    color: var(--ghost-white);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--signal-blue);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-accept {
    background: var(--pure-white);
    color: oklch(0.145 0 0);
    border: none;
    border-radius: 4px;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-accept:hover {
    opacity: 0.88;
}

.cookie-reject {
    background: transparent;
    color: var(--ghost-white);
    border: 1px solid var(--charcoal);
    border-radius: 4px;
    padding: 8px 18px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.cookie-reject:hover {
    border-color: var(--border-mist-10);
    color: var(--pure-white);
}

/* ─── UTILITIES ───────────────────────────────────── */

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.69rem;
    font-weight: 400;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    color: var(--whisper-white);
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-mist-08);
    border-radius: 2px;
    padding: 3px 8px;
}

.glow-cyan {
    position: relative;
}

.glow-cyan::after {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(0,255,255,0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
}

/* ─── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .page-title {
        font-size: 2rem;
    }
    .article-title {
        font-size: 2rem;
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .article-sidebar {
        grid-template-columns: 1fr;
    }
    .stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .cookie-banner.visible {
        flex-direction: column;
    }
    .cookie-actions {
        width: 100%;
    }
}
