/* monopole.quest */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0a0a14; color: #d4d4d8; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; }
.hero { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 2rem; }
.field-pattern { position: absolute; width: 400px; height: 400px; background: repeating-radial-gradient(circle, transparent, transparent 30px, rgba(129,140,248,0.06) 31px); border-radius: 50%; }
.diamond { width: 16px; height: 16px; background: #818cf8; transform: rotate(45deg); position: relative; z-index: 1; margin-bottom: 1.5rem; }
.brand { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: clamp(2rem, 6vw, 3.5rem); position: relative; z-index: 1; }
.begin-text { font-size: 0.85rem; color: #818cf8; margin-top: 0.5rem; position: relative; z-index: 1; }
.phase { max-width: 520px; margin: 0 auto; padding: 3rem 2rem; border-left: 2px solid #1e1e3a; }
.phase-label { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; color: #818cf8; display: block; margin-bottom: 0.5rem; }
.phase-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.3rem; margin-bottom: 0.4rem; }
.phase-text { font-size: 0.85rem; color: rgba(212,212,216,0.7); }
.discovery-marker { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: #34d399; border: 1px solid #34d399; padding: 2px 10px; display: inline-block; margin-top: 1rem; }
.continue { text-align: center; padding: 5rem 2rem; }
.close-text { font-size: 0.85rem; color: rgba(212,212,216,0.3); }
.footer-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.6rem; color: #1e1e3a; display: block; margin-top: 0.5rem; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
