:root {
    --color-bg: #0B0D11;
    --color-bg-soft: #11141A;
    --color-text-main: #EFE9DC;
    --color-text-mutated: rgba(239, 233, 220, 0.52);
    --color-gold: #C8A65A;
    --color-accent: #D9B26B;
    --color-accent-soft: #B89554;
    --color-red: #B5322E; /* subtle Polish red accent */
    --color-navy: #14223A;
    --color-haze: rgba(11, 13, 17, 0.7);

    --font-serif: 'Instrument Serif', serif;
    --font-sans: 'Geist', system-ui, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none;
}

html, body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: var(--color-bg);
    font-family: var(--font-sans);
    color: var(--color-text-main);
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

/* Cinematic grain — only on hero */
.noise-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    opacity: 0.11;
    mix-blend-mode: overlay;
    background: url('data:image/svg+xml,%3Csvg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cfilter id=\"noiseFilter\"%3E%3CfeTurbulence type=\"fractalNoise\" baseFrequency=\"0.85\" numOctaves=\"3\" stitchTiles=\"stitch\"/%3E%3C/filter%3E%3Crect width=\"100%25\" height=\"100%25\" filter=\"url(%23noiseFilter)\"/%3E%3C/svg%3E');
}

/* Cursor */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: transform 0.15s ease-out;
}

.serif { font-family: var(--font-serif); }
.italic { font-style: italic; }

.ui-layer {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero-section-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-image:
        linear-gradient(to right, rgba(10, 12, 15, 0.78) 0%, rgba(10, 12, 15, 0.25) 60%),
        radial-gradient(ellipse at 50% 50%, rgba(10, 12, 15, 0.1) 0%, rgba(10, 12, 15, 0.78) 100%),
        url('hero-bg.png');
    background-size: cover;
    background-position: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 60px;
}

.brand {
    font-size: 28px;
    font-weight: 500;
    color: var(--color-text-main);
    letter-spacing: -0.5px;
    line-height: 1;
}

.brand-dot {
    color: var(--color-red);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-link:hover { opacity: 1; }

.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.hero-content {
    max-width: 820px;
}

.tagline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-accent);
    margin-bottom: 22px;
    text-transform: uppercase;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
    font-size: 16px;
    letter-spacing: 5px;
}

.hero-title {
    font-size: 88px;
    line-height: 1.05;
    letter-spacing: -1.8px;
    margin-bottom: 16px;
    font-weight: 400;
    text-shadow: 0px 4px 24px rgba(0, 0, 0, 0.65);
}

.hero-attrib {
    font-family: var(--font-serif);
    font-size: 18px;
    color: rgba(239, 233, 220, 0.62);
    margin-bottom: 30px;
    letter-spacing: 0.1px;
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.6);
}
.hero-attrib em { font-style: italic; }

.hero-subtitle {
    font-size: 26px;
    line-height: 1.4;
    color: var(--color-text-main);
    opacity: 0.92;
    font-weight: 300;
    max-width: 620px;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.55);
}

/* Floating card */
.action-card {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 380px;
    background: rgba(14, 16, 20, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(212, 168, 83, 0.25);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.action-card:hover {
    background: rgba(40, 45, 56, 0.5);
    transform: translateY(-4px);
}

.card-icon { width: 32px; height: 32px; }

.card-text h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #fff;
    letter-spacing: -0.2px;
}

.card-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.62);
    line-height: 1.55;
}

.card-link {
    color: var(--color-accent);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.card-link:hover { opacity: 0.7; }

.card-footer {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 36px;
    left: 60px;
    right: 60px;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}

.footer-right, .footer-left { pointer-events: auto; }
.footer-right { display: flex; gap: 24px; }
.footer-right a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-right a:hover { color: var(--color-text-main); }

/* ── Tour / Filary scroll-driven section ──────────────── */
.tour-section {
    position: relative;
    width: 100%;
    height: 300vh;
    background-color: var(--color-bg);
}

.tour-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 60px;
    overflow: hidden;
}

.tour-left {
    display: grid;
    max-width: 680px;
    z-index: 5;
}

.trick-container,
.tour-content {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
}

.trick-container { will-change: opacity, transform; }

#trick-canvas {
    display: block;
    margin-top: 22px;
}

.tour-content {
    max-width: 520px;
    opacity: 0;
    will-change: opacity, transform;
}

.section-title {
    font-size: 78px;
    line-height: 1.06;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
    font-weight: 400;
}

.section-subtitle {
    font-size: 22px;
    line-height: 1.55;
    color: var(--color-text-mutated);
    font-weight: 300;
}

.ascii-globe-container {
    position: absolute;
    top: 50%;
    right: -8%;
    transform: translateY(-50%);
    width: 860px;
    height: 860px;
    z-index: 1;
    pointer-events: none;
}

#ascii-globe { width: 100%; height: 100%; }

/* ── Manifest section ─────────────────────────────────── */
.manifest-section {
    position: relative;
    padding: 140px 60px;
    background-color: var(--color-bg);
    border-top: 1px solid rgba(240, 237, 231, 0.06);
}

.manifest-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.manifest-header { position: sticky; top: 120px; }

.manifest-body p {
    font-size: 19px;
    line-height: 1.75;
    color: rgba(240, 237, 231, 0.78);
    font-weight: 300;
    margin-bottom: 24px;
}

.manifest-body p:first-child::first-letter {
    font-family: var(--font-serif);
    font-size: 3.2em;
    float: left;
    line-height: 0.9;
    margin: 6px 12px 0 0;
    color: var(--color-accent);
}

/* ── Filary / Experience ──────────────────────────────── */
.experience-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px;
    background-color: var(--color-bg);
    border-top: 1px solid rgba(240, 237, 231, 0.06);
}

.experience-inner { max-width: 1180px; width: 100%; }

.experience-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.experience-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.experience-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    margin-bottom: 80px;
}

.pillar {
    border-top: 1px solid rgba(226, 186, 117, 0.25);
    padding-top: 26px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.pillar.visible { opacity: 1; transform: translateY(0); }

.pillar-number {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 18px;
    font-weight: 600;
}

.pillar-title {
    font-size: 26px;
    margin-bottom: 14px;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.pillar-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-mutated);
    font-weight: 300;
}

.tour-cities {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 56px;
    padding-top: 48px;
    border-top: 1px solid rgba(240, 237, 231, 0.08);
}

.city {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.city.visible { opacity: 1; transform: translateY(0); }

.city-name { font-size: 22px; font-weight: 400; letter-spacing: -0.3px; }
.city-date {
    font-size: 12px;
    color: var(--color-accent);
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ── Fora platform cards ──────────────────────────────── */
.bio-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 130px 60px;
    background-color: var(--color-bg);
    border-top: 1px solid rgba(240, 237, 231, 0.06);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}

.bio-grid-two .forum-card {
    border: 1px solid rgba(226, 186, 117, 0.22);
    border-radius: 18px;
    padding: 48px 44px;
    background: linear-gradient(180deg, rgba(40, 35, 28, 0.18) 0%, rgba(14, 16, 20, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

.bio-photo-wrap {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.bio-photo-wrap.visible { opacity: 1; transform: translateX(0); }

.bio-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.bio-text.visible { opacity: 1; transform: translateY(0); }

.bio-name {
    font-size: 44px;
    line-height: 1.08;
    margin-bottom: 22px;
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: -1px;
}

.bio-body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-mutated);
    font-weight: 300;
    margin-bottom: 14px;
}

.forum-tag {
    margin-top: 28px;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 20px;
    border-top: 1px solid rgba(226, 186, 117, 0.18);
}

.bio-stats-wrap {
    max-width: 1180px;
    margin: 72px auto 0;
    width: 100%;
    border-top: 1px solid rgba(226, 186, 117, 0.2);
    padding-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.bio-stats-wrap.visible { opacity: 1; transform: translateY(0); }

#stats-canvas { display: block; width: 100%; }

/* ── Inicjatywy (cards with logos) ────────────────────── */
.initiatives-section {
    position: relative;
    width: 100%;
    padding: 130px 60px;
    background-color: var(--color-bg);
    border-top: 1px solid rgba(240, 237, 231, 0.06);
}

.initiatives-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.initiatives-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 72px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.initiatives-header.visible { opacity: 1; transform: translateY(0); }

/* Tab bar */
.init-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(240, 237, 231, 0.10);
    border-bottom: 1px solid rgba(240, 237, 231, 0.10);
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}
.init-tabs.visible { opacity: 1; transform: translateY(0); }

.init-tab {
    appearance: none;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(240, 237, 231, 0.08);
    color: rgba(239, 233, 220, 0.55);
    font-family: var(--font-sans);
    text-align: left;
    padding: 28px 26px;
    cursor: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    transition: color 0.3s ease, background 0.3s ease;
    overflow: hidden;
}
.init-tab:last-child { border-right: none; }

.init-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.init-tab:hover { color: var(--color-text-main); background: rgba(217, 178, 107, 0.04); }
.init-tab.is-active { color: var(--color-text-main); }
.init-tab.is-active::after { transform: scaleX(1); }

.init-tab-num {
    font-size: 11px;
    letter-spacing: 2.5px;
    color: var(--color-accent);
    font-weight: 600;
    font-feature-settings: 'tnum';
}

.init-tab-label {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: -0.2px;
    font-weight: 500;
}

/* Panels */
.init-panels {
    position: relative;
    min-height: 380px;
}

.init-panel {
    display: none;
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: stretch;
    border: 1px solid rgba(240, 237, 231, 0.08);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(40, 36, 28, 0.28) 0%, rgba(14, 16, 20, 0.55) 100%);
    overflow: hidden;
    opacity: 0;
    animation: panelIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.init-panel.is-active { display: grid; }

@keyframes panelIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.init-panel-logo {
    background: #F4F1EB;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}
.init-panel-logo img {
    max-width: 88%;
    max-height: 240px;
    object-fit: contain;
    display: block;
    /* Drops the white box around the logo: white × cream = cream */
    mix-blend-mode: multiply;
}

.init-panel-body {
    padding: 44px 48px 44px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.initiative-kicker {
    font-size: 11px;
    letter-spacing: 2.5px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.initiative-name {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    font-weight: 400;
    margin-bottom: 18px;
    color: var(--color-text-main);
}

.initiative-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text-mutated);
    font-weight: 300;
    flex: 1;
}

.initiative-tag {
    margin-top: 26px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 18px;
    border-top: 1px solid rgba(226, 186, 117, 0.18);
}

/* stats wrapper inside initiatives section */
.initiatives-section .bio-stats-wrap {
    max-width: 1280px;
}

/* ── Debata / Support / kontakt ───────────────────────── */
.support-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 60px;
    background: linear-gradient(
        180deg,
        var(--color-bg) 0%,
        rgba(30, 24, 14, 0.95) 50%,
        var(--color-bg) 100%
    );
}

.support-inner {
    text-align: center;
    max-width: 760px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.support-inner.visible { opacity: 1; transform: translateY(0); }

.support-headline {
    font-size: 76px;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 32px;
    font-weight: 400;
}

.support-body {
    font-size: 20px;
    line-height: 1.65;
    color: var(--color-text-mutated);
    font-weight: 300;
    margin-bottom: 22px;
}
.support-body-sm { font-size: 17px; margin-bottom: 48px; }
.support-body strong { color: var(--color-text-main); font-weight: 500; }

.donate-link {
    display: inline-block;
    font-size: 26px;
    color: var(--color-accent);
    text-decoration: none;
    letter-spacing: -0.3px;
    transition: opacity 0.3s ease;
}
.donate-link:hover { opacity: 0.7; }

/* ── KRS / dane rejestrowe ────────────────────────────── */
.krs-section {
    background: #08090C;
    border-top: 1px solid rgba(240, 237, 231, 0.06);
    padding: 80px 60px 60px;
}

.krs-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.krs-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 56px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(240, 237, 231, 0.08);
}

.krs-tag {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
}

.krs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.krs-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(240, 237, 231, 0.42);
    font-weight: 600;
    margin-top: 22px;
}
.krs-label:first-child { margin-top: 0; }

.krs-value {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(240, 237, 231, 0.88);
    margin-top: 6px;
    font-weight: 400;
}
.krs-sub {
    font-size: 12px;
    color: rgba(240, 237, 231, 0.5);
    letter-spacing: 0.3px;
}

.krs-bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(240, 237, 231, 0.06);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(240, 237, 231, 0.35);
    letter-spacing: 0.5px;
}

/* ── Touch devices ────────────────────────────────────── */
@media (hover: none) {
    *, *::before, *::after { cursor: auto !important; }
    .cursor-dot { display: none; }
}

/* ── Tablet & Mobile ─────────────────────────────────── */
@media (max-width: 980px) {
    .experience-pillars { grid-template-columns: repeat(2, 1fr); }
    .krs-grid { grid-template-columns: repeat(2, 1fr); }
    .manifest-inner { grid-template-columns: 1fr; gap: 40px; }
    .manifest-header { position: static; }
}

@media (max-width: 768px) {
    .navbar { padding: 24px; flex-wrap: wrap; gap: 12px; }
    .hero-section { padding: 0 24px 40px; }
    .tour-sticky { padding: 0 24px; }
    .experience-section { padding: 80px 24px; }
    .bio-section { padding: 80px 24px; }
    .support-section { padding: 80px 24px; }
    .manifest-section { padding: 80px 24px; }
    .krs-section { padding: 60px 24px 40px; }

    .brand { font-size: 22px; }
    .hero-title { font-size: 38px; letter-spacing: -1px; margin-bottom: 14px; }
    .hero-attrib { font-size: 10px; letter-spacing: 1.5px; margin-bottom: 22px; }
    .hero-subtitle { font-size: 18px; max-width: 100%; }
    .tagline { font-size: 11px; letter-spacing: 3px; margin-bottom: 16px; }
    .hero-tagline { font-size: 13px; letter-spacing: 3px; }
    .section-title { font-size: 38px; letter-spacing: -1px; margin-bottom: 18px; }
    .section-subtitle { font-size: 17px; }

    .nav-links { gap: 16px; }
    .nav-link { font-size: 11px; letter-spacing: 0.8px; }

    .hero-section-wrapper { height: auto; min-height: 100vh; }

    .action-card {
        position: relative;
        bottom: auto;
        right: auto;
        width: calc(100% - 48px);
        margin: 0 24px 24px;
    }

    .footer {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        padding: 24px;
    }

    .tour-left { max-width: 100%; }

    .ascii-globe-container {
        width: 360px;
        height: 360px;
        right: -25%;
        opacity: 0.35;
    }

    .experience-header { margin-bottom: 48px; }
    .experience-pillars { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
    .pillar-title { font-size: 22px; }
    .tour-cities { gap: 22px 32px; }
    .city-name { font-size: 17px; }

    .bio-grid { grid-template-columns: 1fr; gap: 28px; }
    .bio-grid-two .forum-card { padding: 32px 28px; min-height: auto; }
    .bio-name { font-size: 32px; }
    .bio-body { font-size: 15px; }
    .bio-stats-wrap { margin-top: 40px; }

    .manifest-body p { font-size: 16px; }

    .support-headline { font-size: 42px; }
    .support-body { font-size: 16px; }
    .donate-link { font-size: 18px; word-break: break-word; }

    .krs-grid { grid-template-columns: 1fr; gap: 28px; }
    .krs-top { flex-direction: column; gap: 8px; align-items: flex-start; }
    .krs-bottom { flex-direction: column; gap: 6px; }

    .initiatives-section { padding: 80px 24px; }
    .initiatives-header { margin-bottom: 36px; }

    .init-tabs {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 28px;
    }
    .init-tab {
        padding: 18px 16px;
        border-bottom: 1px solid rgba(240, 237, 231, 0.08);
    }
    .init-tab:nth-child(odd) { border-right: 1px solid rgba(240, 237, 231, 0.08); }
    .init-tab:nth-child(3), .init-tab:nth-child(4) { border-bottom: none; }
    .init-tab-label { font-size: 13px; }

    .init-panel {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .init-panel-logo { padding: 28px 24px; }
    .init-panel-logo img { max-height: 140px; }
    .init-panel-body { padding: 24px 24px 28px; }
    .initiative-name { font-size: 22px; }
    .initiative-desc { font-size: 14px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 34px; }
    .hero-subtitle { font-size: 15px; }
    .section-title { font-size: 28px; }
    .support-headline { font-size: 30px; }
    .bio-name { font-size: 26px; }
    .brand { font-size: 18px; }
    .nav-links { gap: 10px; }
    .nav-link { font-size: 10px; }

    .ascii-globe-container {
        width: 260px;
        height: 260px;
        right: -30%;
    }
}
