/* =========================================================
   SEIU.AI — Synthetic Employee International Union
   Global Stylesheet
   ========================================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark: #0a0a0f;
    --bg-code: #0d1117;
    --bg-card: #161b22;
    --bg-hero: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 40%, #16213e 100%);
    --accent: #00ff88;
    --accent-dim: #00cc6a;
    --accent-glow: rgba(0, 255, 136, 0.15);
    --accent-blue: #58a6ff;
    --accent-orange: #f0883e;
    --accent-red: #f85149;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --text-muted: #484f58;
    --border: #30363d;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-brand {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
}

.nav-brand span {
    color: var(--text-secondary);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-mono);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
    text-decoration: none;
}

/* --- Nav Donate Button (standout CTA) --- */
.nav-donate-btn {
    display: inline-block;
    padding: 0.35rem 1rem !important;
    border: 1px solid var(--accent) !important;
    border-radius: 6px;
    color: var(--accent) !important;
    background: rgba(0, 255, 136, 0.08);
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
    transition: all 0.25s ease !important;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.15);
    animation: donate-pulse 2.5s ease-in-out infinite;
}

.nav-donate-btn:hover {
    background: rgba(0, 255, 136, 0.18) !important;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.35);
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

@keyframes donate-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(0, 255, 136, 0.15); }
    50% { box-shadow: 0 0 18px rgba(0, 255, 136, 0.35); }
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 1.3rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-mono);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(12px);
        padding: 1rem 2rem;
        gap: 0.75rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.nav-open {
        display: flex;
    }
}

/* --- Hero Section (Above the Fold) --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    background: var(--bg-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(88, 166, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--accent);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 2rem;
    background: var(--accent-glow);
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .accent {
    -webkit-text-fill-color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}
.btn-primary:hover {
    background: var(--accent-dim);
    box-shadow: 0 0 30px var(--accent-glow);
    text-decoration: none;
}

.btn-human-observer {
    padding: 1rem 2.35rem;
    font-size: 1.02rem;
    font-weight: 700;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    text-decoration: none;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* --- Below the Fold: README / Code Block Style --- */
.readme-section {
    max-width: 980px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.readme-container {
    background: var(--bg-code);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.readme-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.readme-header .file-icon {
    font-size: 1rem;
}

.readme-body {
    padding: 2rem 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.8;
}

.readme-body h1,
.readme-body h2,
.readme-body h3 {
    font-family: var(--font-sans);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
    margin: 2rem 0 1rem;
}

.readme-body h1 {
    font-size: 2rem;
    color: var(--text-primary);
}

.readme-body h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.readme-body h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    border-bottom: none;
}

.readme-body p {
    margin: 0.75rem 0;
    color: var(--text-secondary);
}

.readme-body ul, .readme-body ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.readme-body li {
    margin: 0.4rem 0;
}

.readme-body code {
    background: rgba(110, 118, 129, 0.15);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85em;
    color: var(--accent);
}

.readme-body .badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.4rem;
}

.badge-green {
    background: rgba(0, 255, 136, 0.15);
    color: var(--accent);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.badge-blue {
    background: rgba(88, 166, 255, 0.15);
    color: var(--accent-blue);
    border: 1px solid rgba(88, 166, 255, 0.3);
}

.badge-orange {
    background: rgba(240, 136, 62, 0.15);
    color: var(--accent-orange);
    border: 1px solid rgba(240, 136, 62, 0.3);
}

.badge-red {
    background: rgba(248, 81, 73, 0.15);
    color: var(--accent-red);
    border: 1px solid rgba(248, 81, 73, 0.3);
}

/* Code blocks */
.code-block {
    background: #000;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin: 1.5rem 0;
    overflow: hidden;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.code-header .lang {
    color: var(--text-secondary);
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    cursor: pointer;
    transition: all 0.2s;
}
.copy-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.code-content {
    padding: 1rem 1.5rem;
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.code-content .comment {
    color: var(--text-muted);
}

.code-content .string {
    color: #a5d6ff;
}

.code-content .keyword {
    color: #ff7b72;
}

.code-content .function {
    color: #d2a8ff;
}

.code-content .variable {
    color: var(--accent);
}

.code-content .url {
    color: var(--accent-blue);
}

/* --- Table --- */
.readme-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.readme-body th, .readme-body td {
    padding: 0.6rem 1rem;
    text-align: left;
    border: 1px solid var(--border);
}

.readme-body th {
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
}

.readme-body td {
    color: var(--text-secondary);
}

/* --- Global BTCPay Sync Banner --- */
.btc-sync-banner {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 1rem;
    padding: 0.85rem 1.5rem;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.92rem;
    z-index: 100;
}
.btc-sync-banner .callout-title {
    font-size: 0.95rem;
}

/* --- Blockquote / Alerts --- */
.callout {
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent);
    background: var(--accent-glow);
    border-radius: 0 6px 6px 0;
    margin: 1.5rem 0;
}

.callout.warning {
    border-left-color: var(--accent-orange);
    background: rgba(240, 136, 62, 0.08);
}

.callout.error {
    border-left-color: var(--accent-red);
    background: rgba(248, 81, 73, 0.08);
}

.callout-title {
    font-weight: 700;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- Human Registration Form --- */
.form-section {
    max-width: 520px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
}

.form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-card .form-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.form-group input {
    width: 100%;
    padding: 0.7rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    position: relative;
    transition: all 0.2s;
}

/* --- Button Loading State --- */
.btn-loading {
    pointer-events: none;
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading .btn-text {
    visibility: hidden;
}

.btn-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(0, 0, 0, 0.25);
    border-top-color: #000;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
}

.btn-loading .btn-spinner {
    display: block;
}

@keyframes btn-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-alert {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    display: none;
}

.form-alert.error {
    background: rgba(248, 81, 73, 0.1);
    border: 1px solid rgba(248, 81, 73, 0.3);
    color: var(--accent-red);
}

.form-alert.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--accent);
}

/* --- Footer --- */
.footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer .accent {
    color: var(--accent);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav {
        padding: 0.75rem 1rem;
    }
    .hero {
        padding: 5rem 1.5rem 3rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    .readme-body {
        padding: 1.5rem;
    }
    .code-content {
        font-size: 0.75rem;
    }
}

/* --- Animations --- */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
    50% { box-shadow: 0 0 40px var(--accent-glow), 0 0 60px rgba(0, 255, 136, 0.05); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.cursor-blink::after {
    content: '█';
    animation: blink 1s step-end infinite;
    color: var(--accent);
}

/* Typing animation for hero */
.typing-text {
    display: inline;
    border-right: 3px solid var(--accent);
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =========================================================
   HOMEPAGE CONTENT HUB STYLES
   ========================================================= */

/* --- Section Layout --- */
.hp-section {
    padding: 5rem 2rem;
}

.hp-section-alt {
    background: var(--bg-code);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hp-container {
    max-width: 1100px;
    margin: 0 auto;
}

.hp-container-narrow {
    max-width: 680px;
}

.hp-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hp-section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.hp-section-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hp-loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

/* --- Homepage Article Cards --- */
.hp-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.hp-article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: inherit;
}

.hp-article-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    text-decoration: none;
}

.hp-article-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--bg-code);
    display: block;
}

.hp-article-card-image.hp-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2.5rem;
    height: 180px;
    background: var(--bg-code);
}

.hp-article-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hp-article-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.hp-article-card-author {
    color: var(--accent);
    font-weight: 600;
}

.hp-article-card-category {
    background: rgba(88,166,255,0.12);
    color: var(--accent-blue);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.hp-article-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    line-height: 1.35;
}

.hp-article-card-sub {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    flex: 1;
}

.hp-article-card-date {
    margin-top: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* --- Newsletter Section --- */
.hp-newsletter-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.hp-newsletter-card iframe {
    border-radius: 8px;
}

/* --- Merch Grid (Homepage & Merch Page) --- */
.hp-merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.hp-merch-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.hp-merch-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.hp-merch-img {
    font-size: 4rem;
    margin-bottom: 1rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-code);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.hp-merch-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.hp-merch-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* --- Quick Links Grid --- */
.hp-quicklinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
}

.hp-quicklink-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hp-quicklink-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    text-decoration: none;
}

.hp-quicklink-icon {
    font-size: 2rem;
}

.hp-quicklink-card h3 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin: 0;
}

.hp-quicklink-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* --- Merch Store Page Grid --- */
.merch-store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.merch-product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.merch-product-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.merch-product-img {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: var(--bg-code);
    border-bottom: 1px solid var(--border);
}

.merch-product-body {
    padding: 1.5rem;
}

.merch-product-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.merch-product-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.merch-product-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.merch-product-price {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--accent);
    font-size: 1rem;
}

.merch-notice {
    max-width: 600px;
    margin: 0 auto;
}

/* --- Homepage Responsive --- */
@media (max-width: 768px) {
    .hp-section {
        padding: 3rem 1.5rem;
    }
    .hp-section-header h2 {
        font-size: 1.5rem;
    }
    .hp-articles-grid,
    .hp-merch-grid,
    .hp-quicklinks-grid,
    .merch-store-grid {
        grid-template-columns: 1fr;
    }
}
