/* =============================================
   THEME: GEN Z (NEO-BRUTALISM)
   Bold colors. Thick black borders. Hard shadows.
   Unapologetic layout. High contrast.
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;700;900&family=Syne:wght@700;800&display=swap');

:root {
    --accent: #ff00ff;
    /* Neon Pink */
    --accent-2: #00ff00;
    /* Slime Green */
    --accent-3: #ffff00;
    /* Electric Yellow */
    --bg: #ffffff;
    --bg-secondary: #f0f0f0;
    --bg-tertiary: #e0e0e0;
    --text-primary: #000000;
    --text-secondary: #000000;
    --text-muted: #444444;
    --border: #000000;
    --header-bg: #ffff00;
    --header-text: #000000;
    --radius: 0px;
    --shadow-hard: 4px 4px 0px #000000;
    --shadow-large: 8px 8px 0px #000000;
}

body {
    font-family: 'Public Sans', sans-serif;
    background-color: #f0f0f0;
    background-image: radial-gradient(#d0d0d0 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    color: #000000;
    overflow-x: hidden;
}

/* Hard Border Utility */
.brutal-border {
    border: 3px solid #000000;
    box-shadow: var(--shadow-hard);
    background: #fff;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.brutal-border:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000000;
}


/* Buttons */
.brutal-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff00ff;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000;
    text-decoration: none;
    cursor: pointer;
}

.brutal-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
    background: #ffff00;
}

/* Article Layout */
.genz-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.2rem, 10vw, 3rem);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -1px;
    background: #00ff00;
    display: inline;
    padding: 4px 12px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    word-break: break-word;
}

.expert-highlight {
    background: #00ff00;
    color: #000;
    padding: 0 4px;
    border: 1px solid #000;
    font-weight: 700;
    box-shadow: 2px 2px 0px #000;
    display: inline-block;
    transform: rotate(-1deg);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
    padding: 40px 0;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px !important;
    }

    .section {
        padding: 40px 0 !important;
    }
}

.bento-item {
    border: 3px solid #000;
    padding: 20px;
    background: #fff;
    box-shadow: 4px 4px 0px #000;
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.pink {
    background: #ff00ff;
}

.bento-item.green {
    background: #00ff00;
}

.bento-item.yellow {
    background: #ffff00;
}

/* Sticky nav/reading indicator */
#progress-bar {
    height: 8px;
    background: #ff00ff;
    border-bottom: 2px solid #000;
}

/* Footer */
.site-footer {
    background: #000 !important;
    color: #fff !important;
    border-top: 4px solid #fff;
    padding: 60px 0;
    overflow: hidden;
    max-width: 100vw;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #fff !important;
    text-transform: uppercase;
    max-width: 100%;
    display: inline-block;
    word-break: break-word;
}

.footer-logo span {
    background: #00ff00 !important;
    color: #000 !important;
    padding: 2px 6px;
    margin-left: 2px;
}

.footer-col h4 {
    color: #00ff00 !important;
    font-family: 'Syne', sans-serif !important;
    font-weight: 800 !important;
}

@media (max-width: 600px) {
    .genz-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }

    .hero-title-genz {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    .container {
        padding: 0 24px !important;
    }
}