/* parallel.quest - Colors: #7A6A50, #C4A050, #2A4A6A, #2A1A10, #8A2A20 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #7A6A50; background: #2A1A10; overflow-x: hidden; }
.hero { min-height: 65vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; }
.hero-title { font-family: 'Crimson Pro', serif; font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700; color: #C4A050; }
.hero-sub { font-family: 'Fira Code', monospace; font-size: 13px; color: #2A4A6A; margin-top: 12px; }
.content { max-width: 680px; margin: 0 auto; padding: 0 24px 80px; }
.block { padding: 40px 0; border-bottom: 1px solid rgba(196,160,80,0.1); opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.block.visible { opacity: 1; transform: translateY(0); }
.label { font-family: 'Fira Code', monospace; font-size: 11px; color: #8A2A20; letter-spacing: 0.1em; display: block; margin-bottom: 8px; }
.heading { font-family: 'Crimson Pro', serif; font-size: 1.5rem; font-weight: 700; color: #C4A050; margin-bottom: 8px; }
.text { font-size: 0.95rem; line-height: 1.85; color: #7A6A50; }
