/* mysterious.quest */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0a0f1a; color: #e0e0e0; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.6; }
.hero { min-height: 70vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 4rem 2rem; }
.network { position: absolute; inset: 0; pointer-events: none; }
.node { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #334155; }
.n1 { top: 25%; left: 20%; }
.n2 { top: 40%; right: 25%; }
.n3 { bottom: 30%; left: 40%; }
.conn { position: absolute; height: 1px; background: #334155; transform-origin: left center; }
.c1 { top: 25%; left: 20%; width: 35%; transform: rotate(15deg); }
.c2 { top: 40%; left: 40%; width: 20%; transform: rotate(-20deg); }
.hero-content { text-align: center; position: relative; z-index: 1; }
.case-label { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; color: #ef4444; display: block; margin-bottom: 0.5rem; letter-spacing: 0.15em; }
.brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; letter-spacing: 0.05em; }
.tagline { font-size: 0.8rem; color: #666; margin-top: 0.3rem; }
.clues { max-width: 560px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.clue-panel { background: #111827; border: 1px solid #334155; border-radius: 6px; padding: 1.5rem; position: relative; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; position: absolute; top: 12px; right: 12px; }
.status-dot.red { background: #ef4444; }
.status-dot.amber { background: #f59e0b; }
.status-dot.green { background: #22c55e; }
.clue-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.3rem; }
.clue-id { font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; color: #555; display: block; margin-bottom: 0.5rem; }
.clue-text { font-size: 0.75rem; color: #999; }
.evidence { max-width: 560px; margin: 0 auto; padding: 2rem 1.5rem; }
.section-label { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.15em; color: #555; margin-bottom: 1rem; }
.evidence-strip { display: flex; gap: 0.75rem; overflow-x: auto; padding-bottom: 0.5rem; }
.evidence-card { background: #111827; border: 1px solid #334155; border-radius: 4px; padding: 1rem; min-width: 120px; flex-shrink: 0; }
.ev-id { font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; color: #f59e0b; display: block; margin-bottom: 0.3rem; }
.ev-desc { font-size: 0.7rem; color: #888; }
.close { text-align: center; padding: 3rem 2rem; }
.case-status { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; color: #ef4444; display: block; margin-bottom: 0.5rem; letter-spacing: 0.1em; }
.footer-brand { font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; color: #1a2030; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
