:root {
    --black:      #0a0a0a;
    --dark:       #111111;
    --dark-mid:   #1a1a1a;
    --mid:        #2a2a2a;
    --border:     #2f2f2f;
    --muted:      #666666;
    --light-muted:#888888;
    --light:      #cccccc;
    --white:      #f0ede8;
    --accent:     #c8a96e;
    --accent-dim: #8a7048;
    --red:        #c0392b;
    --green:      #27ae60;
    --blue:       #2980b9;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Source Serif 4', Georgia, serif;
    --font-mono:    'JetBrains Mono', monospace;
    --container:  1200px;
    --radius:     2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--white); }

.site-header {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; flex-direction: column; line-height: 1.1; }

.logo-de {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.logo-en {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

nav { display: flex; gap: 2rem; }

nav a {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light-muted);
}

nav a:hover { color: var(--white); }

.hero {
    padding: 5rem 0 4rem;
    border-bottom: 1px solid var(--border);
}

.hero-mission {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--white);
    max-width: 700px;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--light-muted);
    max-width: 600px;
    line-height: 1.8;
}

.claims-section { padding: 4rem 0; }

.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-sub {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

.claims-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
}

.claim-card {
    background: var(--dark);
    padding: 2rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.claim-card:hover { background: var(--dark-mid); }

.claim-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.claim-category {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(200, 169, 110, 0.1);
    padding: 0.25rem 0.6rem;
    border: 1px solid var(--accent-dim);
    border-radius: var(--radius);
    white-space: nowrap;
}

.claim-score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

.score-number {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
    color: var(--white);
}

.score-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: right;
}

.claim-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--light);
    line-height: 1.5;
    font-style: italic;
}

.claim-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.claim-source {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.03em;
}

.claim-date {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--border);
    letter-spacing: 0.05em;
}

.score-high   { color: var(--red); }
.score-medium { color: var(--accent); }
.score-low    { color: var(--green); }

.score-bar-wrap { margin-top: 0.5rem; }

.score-bar-track {
    height: 2px;
    background: var(--mid);
    border-radius: 1px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    border-radius: 1px;
    transition: width 1s ease;
}

.methodology-strip {
    background: var(--dark-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 0;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.method-item { display: flex; flex-direction: column; gap: 0.75rem; }

.method-number {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.method-item h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.method-item p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
}

.site-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-left p {
    font-size: 0.8rem;
    color: var(--muted);
    max-width: 300px;
}

.footer-right { display: flex; gap: 2rem; }

.footer-right a {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--border);
    line-height: 1.6;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-family: var(--font-mono);
}

.loading {
    padding: 3rem;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.claim-detail { padding: 3rem 0; }

.back-link {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.back-link:hover { color: var(--white); }

.claim-headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    font-style: italic;
    max-width: 800px;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.claim-attribution {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.attr-item { display: flex; flex-direction: column; gap: 0.2rem; }

.attr-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.attr-value { font-size: 0.9rem; color: var(--light); }

.score-display {
    background: var(--dark-mid);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 3rem;
}

.score-display-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.score-big { display: flex; align-items: baseline; gap: 0.5rem; }

.score-big-number {
    font-family: var(--font-mono);
    font-size: 4rem;
    font-weight: 500;
    line-height: 1;
    color: var(--white);
}

.score-big-max {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--muted);
}

.score-big-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--accent);
    font-style: italic;
}

.score-disclaimer {
    font-size: 0.8rem;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.6;
}

.score-components {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.component { display: flex; flex-direction: column; gap: 0.5rem; }

.component-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.component-score {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--white);
}

.component-max {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
}

.component-bar { height: 2px; background: var(--mid); }
.component-bar-fill { height: 100%; background: var(--accent); }

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

.section-header { margin-bottom: 1.5rem; }

.section-header h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.section-header p { font-size: 0.85rem; color: var(--muted); }

.evolution-graph {
    background: var(--dark-mid);
    border: 1px solid var(--border);
    padding: 2rem;
    position: relative;
    height: 280px;
}

.graph-svg { width: 100%; height: 100%; }

.graph-tooltip {
    position: absolute;
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--light);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    max-width: 280px;
    line-height: 1.5;
    z-index: 10;
}

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

.evidence-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.evidence-item {
    background: var(--dark);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.evidence-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.evidence-source {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.03em;
}

.evidence-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.badge {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius);
    border: 1px solid;
    white-space: nowrap;
}

.badge-supports {
    color: var(--green);
    border-color: rgba(39, 174, 96, 0.3);
    background: rgba(39, 174, 96, 0.05);
}

.badge-contradicts {
    color: var(--red);
    border-color: rgba(192, 57, 43, 0.3);
    background: rgba(192, 57, 43, 0.05);
}

.badge-partial {
    color: var(--accent);
    border-color: rgba(200, 169, 110, 0.3);
    background: rgba(200, 169, 110, 0.05);
}

.badge-category { color: var(--muted); border-color: var(--border); }

.badge-conflict {
    color: #e67e22;
    border-color: rgba(230, 126, 34, 0.3);
    background: rgba(230, 126, 34, 0.05);
}

.evidence-text {
    font-size: 0.9rem;
    color: var(--light-muted);
    line-height: 1.7;
}

.evidence-link {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.03em;
    word-break: break-all;
}

.evidence-link:hover { color: var(--accent); }

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

.timeline-list {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 1.5rem;
    border-left: 1px solid var(--border);
}

.timeline-item {
    padding: 0 0 2rem 1.5rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mid);
    border: 1px solid var(--border);
}

.timeline-item.type-suppression_detected::before {
    background: var(--red);
    border-color: var(--red);
}

.timeline-item.type-official_acknowledgement::before {
    background: var(--accent);
    border-color: var(--accent);
}

.timeline-item.type-evidence_emerged::before {
    background: var(--blue);
    border-color: var(--blue);
}

.timeline-date {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.timeline-type {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--light-muted);
    line-height: 1.7;
}

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

.suppression-note {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--muted);
    padding: 1rem;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.suppression-item {
    background: var(--dark);
    border: 1px solid rgba(192, 57, 43, 0.2);
    padding: 1.5rem;
    margin-bottom: 1px;
}

.suppression-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.suppression-platform {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--red);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.suppression-type {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.05em;
}

.suppression-date {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--muted);
}

.suppression-desc {
    font-size: 0.9rem;
    color: var(--light-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .method-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .score-components { grid-template-columns: repeat(2, 1fr); }
    .claims-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 2rem; }
}

@media (max-width: 480px) {
    .method-grid { grid-template-columns: 1fr; }
    .score-components { grid-template-columns: 1fr; }
    .hero-mission { font-size: 1.8rem; }
}
