/* =============================================
   DEEP RESEARCH - MASTER STYLESHEET
   ============================================= */

/* CSS Variables */
:root {
    --bg-dark: #0a0a0f;
    --bg-section: #12121a;
    --bg-card: #1a1a25;
    --bg-card-hover: #222230;

    --text-primary: #e8e8ed;
    --text-secondary: #9898a8;
    --text-muted: #6a6a7a;

    --accent-gold: #d4af37;
    --accent-gold-dim: #a8892c;
    --accent-green: #4ade80;
    --accent-red: #f87171;
    --accent-blue: #60a5fa;

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(212, 175, 55, 0.3);

    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #a8892c 100%);

    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'Consolas', 'Monaco', monospace;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.1rem;
    color: var(--accent-gold);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--text-primary);
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

em {
    color: var(--accent-gold);
    font-style: italic;
}

blockquote {
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

blockquote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

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

.hero h1 {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero .subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero .tagline {
    font-size: 1rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(45deg);
}

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

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

/* =============================================
   INFO SECTIONS
   ============================================= */
.info-section {
    padding: 6rem 2rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.info-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-section.dark {
    background: var(--bg-section);
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Section Images */
.section-image {
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Key Insight Box */
.key-insight {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.big-quote {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0;
}

.highlight {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.column h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.myth-list, .truth-list {
    list-style: none;
}

.myth-list li, .truth-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.myth-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-red);
}

.truth-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

/* Definition Box */
.definition-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--border-accent);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.definition {
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.8;
}

/* Expandable Sections */
.expandable {
    background: var(--bg-card);
    border-radius: 8px;
    margin: 1.5rem 0;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.expandable-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.expandable-header:hover {
    background: var(--bg-card-hover);
}

.expandable-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.expand-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 300;
    width: 24px;
    text-align: center;
    transition: transform var(--transition-fast);
}

.expandable.expanded .expand-icon {
    transform: rotate(45deg);
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.expandable.expanded .expandable-content {
    max-height: 800px;
    padding: 0 1.5rem 1.5rem;
}

/* T-Account Visualization */
.t-account {
    background: var(--bg-dark);
    border-radius: 6px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.t-account h4 {
    text-align: center;
    margin-bottom: 1rem;
}

.t-account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
}

.t-account-grid > div {
    background: var(--bg-card);
    padding: 1rem;
}

.t-account-grid h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.entry {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    margin: 0;
}

.entry.positive {
    color: var(--accent-green);
}

.entry.negative {
    color: var(--accent-red);
}

.t-account-result {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-secondary);
}

/* Stat Highlight */
.stat-highlight {
    background: var(--bg-card);
    border-left: 3px solid var(--accent-gold);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

.stat-highlight p {
    margin: 0;
    font-size: 1.1rem;
}

/* Tooltip */
.tooltip-trigger {
    position: relative;
    border-bottom: 1px dashed var(--accent-gold);
    cursor: help;
}

.tooltip-content {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    border: 1px solid var(--border-accent);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
    z-index: 10;
    margin-bottom: 8px;
}

.tooltip-trigger:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
}

/* Image Feature */
.image-feature {
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.image-feature img {
    width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   COLLATERAL HIERARCHY
   ============================================= */
.tier-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.tier {
    display: flex;
    align-items: stretch;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.tier-label {
    padding: 1.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    text-align: center;
}

.tier-1 .tier-label { background: linear-gradient(135deg, #d4af37 0%, #a8892c 100%); color: #000; }
.tier-2 .tier-label { background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%); color: #000; }
.tier-3 .tier-label { background: linear-gradient(135deg, #a16207 0%, #713f12 100%); color: #fff; }
.tier-4 .tier-label { background: linear-gradient(135deg, #374151 0%, #1f2937 100%); color: #fff; }

.tier-content {
    padding: 1.25rem;
    flex: 1;
}

.tier-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tier-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Rehypothecation Chain */
.rehypoth-chain {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.chain-step {
    background: var(--bg-dark);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-accent);
    text-align: center;
    width: 100%;
    max-width: 350px;
}

.chain-arrow {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.chain-result {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

/* =============================================
   CRISIS SECTION
   ============================================= */
.crisis-tagline {
    font-size: 1.5rem;
    color: var(--accent-red);
    text-align: center;
    margin-bottom: 2rem;
}

.timeline-event {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-red);
}

.event-date {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent-gold);
    white-space: nowrap;
}

.event-content p {
    margin: 0;
    font-size: 1.1rem;
}

.impact-box {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.impact-box h3 {
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.impact-box ul {
    list-style: none;
}

.impact-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.impact-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-red);
}

.snider-quote {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 3rem;
    border: none;
    padding: 0;
}

.snider-quote cite {
    color: var(--accent-gold);
}

/* =============================================
   SILENT DEPRESSION
   ============================================= */
.big-stat {
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid var(--border-accent);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 8rem);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-top: 0.5rem;
}

.stat-description {
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Growth Comparison */
.comparison-visual {
    position: relative;
    height: 200px;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}

.growth-line {
    position: absolute;
    left: 10%;
    right: 10%;
    height: 4px;
    border-radius: 2px;
}

.growth-line.expected {
    top: 30%;
    background: var(--accent-green);
    transform: rotate(-5deg);
}

.growth-line.actual {
    top: 60%;
    background: var(--accent-red);
    transform: rotate(2deg);
}

.line-label {
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.expected .line-label { color: var(--accent-green); }
.actual .line-label { color: var(--accent-red); }

.gap-indicator {
    position: absolute;
    left: 50%;
    top: 35%;
    height: 25%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px dashed var(--accent-gold);
    border-radius: 4px;
}

.gap-indicator span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
}

/* Evidence Grid */
.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.evidence-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

.evidence-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.evidence-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.evidence-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* =============================================
   FED MYTH SECTION
   ============================================= */
.myth-buster {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin: 2.5rem 0;
}

.myth, .reality {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    height: 100%;
}

.myth {
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.myth h3 {
    color: var(--accent-red);
}

.reality {
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.reality h3 {
    color: var(--accent-green);
}

.vs {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .myth-buster {
        grid-template-columns: 1fr;
    }
    .vs {
        text-align: center;
    }
}

/* QE Breakdown */
.qe-breakdown {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--border-subtle);
}

.qe-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.qe-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.qe-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.qe-item {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.qe-item.negative {
    background: rgba(248, 113, 113, 0.15);
    color: var(--accent-red);
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.qe-item.positive {
    background: rgba(74, 222, 128, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.qe-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.qe-arrow {
    font-size: 2rem;
    color: var(--accent-gold);
}

.qe-conclusion {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Fallacy Box */
.fallacy-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--border-accent);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
}

.fallacy-box h3 {
    color: var(--accent-gold);
}

.fallacy-box blockquote {
    margin: 1rem 0;
}

.fallacy-box > p {
    margin: 0;
}

/* =============================================
   MARKET SIGNALS
   ============================================= */
.signal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.signal-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border-subtle);
}

.signal-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
}

.signal-visual {
    margin: 1rem 0;
}

.yield-curve {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.curve-normal, .curve-inverted {
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.curve-normal {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.curve-inverted {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.curve-normal span, .curve-inverted span {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.curve-normal span { color: var(--accent-green); }
.curve-inverted span { color: var(--accent-red); }

.signal-meaning {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.signal-meaning.good { color: var(--accent-green); }
.signal-meaning.bad { color: var(--accent-red); }

.signal-highlight {
    text-align: center;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1rem 0;
}

.signal-highlight.negative {
    background: rgba(248, 113, 113, 0.15);
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.signal-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-red);
}

.signal-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.prediction-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.prediction {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-dark);
    border-radius: 4px;
}

.prediction.correct {
    border-left: 3px solid var(--accent-green);
}

.prediction .year {
    font-family: var(--font-mono);
    color: var(--accent-gold);
    font-weight: 600;
}

.prediction .pred {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =============================================
   FUTURE OUTLOOK
   ============================================= */
.outlook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.outlook-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

.outlook-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.outlook-item p {
    color: var(--text-secondary);
    margin: 0;
}

.final-quote {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-radius: 8px;
}

.final-quote blockquote {
    border: none;
    font-size: 1.3rem;
    color: var(--text-primary);
    padding: 0;
    margin: 0;
}

/* =============================================
   GLOSSARY
   ============================================= */
.glossary {
    background: var(--bg-dark);
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.term {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

.term dt {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.term dd {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-section);
    border-top: 1px solid var(--border-subtle);
}

footer p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

footer .disclaimer {
    font-size: 0.85rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Sources */
.sources {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.sources-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.sources-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.sources-list a {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.7;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.sources-list a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */
@media (max-width: 600px) {
    .info-section {
        padding: 4rem 1.25rem;
    }

    .tier {
        flex-direction: column;
    }

    .tier-label {
        min-width: 100%;
        padding: 0.75rem;
    }

    .timeline-event {
        flex-direction: column;
        gap: 1rem;
    }

    .qe-arrow {
        transform: rotate(90deg);
    }
}

/* =============================================
   SITE NAVIGATION
   ============================================= */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}

.nav-home {
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.nav-divider {
    color: var(--text-muted);
}

.nav-current {
    color: var(--text-secondary);
}

/* Adjust hero for nav */
body:not(.home-page) .hero {
    padding-top: 60px;
}

/* =============================================
   HOME PAGE
   ============================================= */
.home-page {
    min-height: 100vh;
}

.home-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: var(--gradient-dark);
}

.home-hero-content h1 {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.home-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
}

.home-main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-section h2 {
    margin-bottom: 2rem;
}

/* Infographic Gallery */
.infographic-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.infographic-card {
    display: block;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: transform var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
    text-decoration: none;
}

.infographic-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.infographic-card:hover h3 {
    color: var(--accent-gold);
}

.card-image {
    height: 200px;
    overflow: hidden;
    background: var(--bg-section);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.infographic-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    transition: color var(--transition-fast);
}

.card-subtitle {
    font-size: 0.95rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.card-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.card-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--bg-section);
    border-radius: 100px;
    color: var(--text-muted);
}

/* Placeholder Card */
.infographic-card.placeholder {
    border-style: dashed;
    cursor: default;
}

.infographic-card.placeholder:hover {
    transform: none;
    box-shadow: none;
}

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-section);
}

.placeholder-icon {
    font-size: 3rem;
    color: var(--text-muted);
}

.placeholder .card-content h3 {
    color: var(--text-muted);
}

/* Home Footer */
.home-footer {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.home-footer p {
    margin: 0;
}

/* =============================================
   RESPONSIVE - HOME
   ============================================= */
@media (max-width: 600px) {
    .home-hero {
        padding: 5rem 1.5rem 3rem;
    }

    .home-main {
        padding: 1.5rem;
    }

    .infographic-gallery {
        grid-template-columns: 1fr;
    }

    .site-nav {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* =============================================
   NAVIGATION BAR (ARTICLE PAGES)
   ============================================= */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}

.nav-home {
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.nav-divider {
    color: var(--text-muted);
}

.nav-current {
    color: var(--text-secondary);
}

/* =============================================
   ARTICLE LAYOUT
   ============================================= */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.article-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.article-section p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.article-section p:last-child {
    margin-bottom: 0;
}

/* Article Figures */
.article-figure {
    margin: 3rem 0;
}

.article-figure.full-width {
    margin-left: -2rem;
    margin-right: -2rem;
    max-width: calc(100% + 4rem);
}

@media (min-width: 900px) {
    .article-figure.full-width {
        margin-left: calc(-50vw + 400px);
        margin-right: calc(-50vw + 400px);
        max-width: 100vw;
    }
}

.article-figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.article-figure.full-width img {
    border-radius: 0;
}

.article-figure figcaption {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Glossary List (Article Style) */
.glossary-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.glossary-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 2rem;
}

.glossary-item {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.glossary-list dt {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
}

.glossary-list dd {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    padding-left: 0;
}

@media (max-width: 700px) {
    .glossary-list {
        grid-template-columns: 1fr;
    }
}

/* Summary Section */
.summary-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-accent);
    margin-top: 3rem;
}

.summary-section h2 {
    border-bottom: none;
    margin-top: 0;
}

/* Sources Footer (Article Style) */
.sources-footer {
    background: var(--bg-section);
    padding: 3rem 2rem;
    border-top: 1px solid var(--border-subtle);
}

.sources-content {
    max-width: 800px;
    margin: 0 auto;
}

.sources-footer h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.sources-footer .sources-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.sources-footer .sources-list a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.sources-footer .sources-list a:hover {
    color: var(--accent-gold);
}

/* Scroll Arrow Animation */
.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(45deg);
}

/* =============================================
   RESPONSIVE - ARTICLE
   ============================================= */
@media (max-width: 600px) {
    .article-content {
        padding: 3rem 1.25rem 4rem;
    }

    .article-figure.full-width {
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        max-width: calc(100% + 2.5rem);
    }

    .article-lead {
        font-size: 1.1rem;
    }

    .article-section p {
        font-size: 1rem;
    }

    .nav-bar {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* =============================================
   MEMORIAL SECTION (Gaza Journalists)
   ============================================= */
.memorial-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-accent);
}

.memorial-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2.5rem;
    text-align: center;
}

.journalist-profile {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--accent-gold);
}

.journalist-profile h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.profile-photo {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border-subtle);
}

.arabic-name {
    font-size: 1rem;
    color: var(--accent-gold);
    font-weight: normal;
    margin-left: 0.75rem;
    direction: rtl;
}

.profile-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.profile-meta strong {
    color: var(--text-secondary);
}

.journalist-profile p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.photo-credit {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

/* Data Tables */
.data-section h3 {
    font-size: 1.15rem;
    color: var(--accent-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.data-table thead {
    background: var(--bg-card);
}

.data-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--accent-gold);
    border-bottom: 2px solid var(--border-accent);
}

.data-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.data-table tbody tr:hover {
    background: var(--bg-card);
}

.data-section ul {
    list-style: none;
    padding: 0;
}

.data-section ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.data-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.data-section ul li strong {
    color: var(--accent-gold);
}

/* =============================================
   LET IT SNOW
   ============================================= */
.snowflake {
    position: fixed;
    top: -10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    pointer-events: none;
    z-index: 9999;
    animation: snowfall linear forwards;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

@keyframes snowfall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.3;
    }
}
