/* supplychain.watch - Light-Academia Supply Chain Watchdog */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --linen-light: #FAF8F2;
    --parchment: #F0EBE0;
    --vintage-burgundy: #7A2E3B;
    --dark-forest: #1A3A2A;
    --aged-gold: #B8960A;
    --muted-sepia: #C8B898;
    --print-dark: #1A1410;
    --archive-tan: #7A6A50;
}
body {
    background: var(--linen-light);
    color: var(--print-dark);
    font-family: 'Source Serif 4', serif;
    font-size: 1.05rem;
    line-height: 1.85;
    font-weight: 400;
    overflow-x: hidden;
}

/* Hero */
#hero {
    text-align: center;
    padding: 5rem 2rem 3rem;
}
.eye-motif {
    margin: 0 auto 1.5rem;
}
.eye-motif svg {
    display: block;
    margin: 0 auto;
}
.iris {
    animation: blink 4s ease-in-out infinite;
    transform-origin: center;
}
@keyframes blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}
.hero-title {
    font-family: 'DM Serif Text', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--print-dark);
}
.hero-subtitle {
    font-family: 'Source Serif 4', serif;
    font-size: 1rem;
    color: var(--archive-tan);
    margin-top: 0.25rem;
}

/* Editorial */
#editorial {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

/* Investigation Text */
.investigation {
    margin-bottom: 2.5rem;
}
.section-title {
    font-family: 'DM Serif Text', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--vintage-burgundy);
    margin-bottom: 1rem;
}
.body-text {
    font-size: 1.05rem;
    color: var(--print-dark);
    margin-bottom: 1rem;
}

/* Pull Quote */
.pull-quote {
    border-left: 3px solid var(--muted-sepia);
    padding: 1rem 0 1rem 1.5rem;
    margin: 1.5rem 0;
}
.pull-quote p {
    font-family: 'DM Serif Text', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--vintage-burgundy);
    line-height: 1.5;
}

/* Finding Cards */
.finding-card {
    background: var(--parchment);
    border-left: 4px solid var(--vintage-burgundy);
    padding: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}
.finding-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 100% 0%, rgba(184,150,10,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.finding-forest { border-left-color: var(--dark-forest); }
.finding-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--archive-tan);
    display: block;
    margin-bottom: 0.5rem;
}
.data-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--aged-gold);
    display: block;
    margin-bottom: 0.5rem;
}
.finding-text {
    font-size: 1rem;
    color: var(--print-dark);
}

/* Section animation */
.section {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
#footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--muted-sepia);
}
.footer-text {
    font-size: 0.85rem;
    color: var(--archive-tan);
}

/* Responsive */
@media (max-width: 600px) {
    .finding-card { padding: 1.5rem; }
}
