/* jeongchi.boo */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #1a1a2e; color: #c4c4d4; font-family: 'Lato', sans-serif; line-height: 1.7; }
.hero { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 2rem; position: relative; overflow: hidden; }
.dome-shadow { position: absolute; bottom: 20%; left: 50%; transform: translateX(-50%); width: 200px; height: 100px; border-radius: 200px 200px 0 0; background: rgba(255,255,255,0.03); }
.brand { font-family: 'Cormorant', serif; font-weight: 300; font-size: clamp(3rem, 8vw, 5rem); color: rgba(255,255,255,0.7); position: relative; z-index: 1; }
.boo { opacity: 0.4; }
.haunting { max-width: 600px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.phantom-panel { background: #22223a; padding: 1.5rem; border-radius: 4px; border: 1px solid rgba(99,102,241,0.15); }
.panel-title { font-family: 'Cormorant', serif; font-weight: 300; font-size: 1.3rem; color: #6366f1; margin-bottom: 0.4rem; }
.panel-text { font-size: 0.85rem; color: #c4c4d4; }
.echo { text-align: center; padding: 4rem 2rem; }
.echo-text { font-family: 'Cormorant', serif; font-weight: 300; font-size: 1.2rem; color: #c4c4d4; margin-bottom: 0.5rem; }
.specter { text-align: center; padding: 4rem 2rem; }
.red-dot { width: 8px; height: 8px; border-radius: 50%; background: #dc2626; display: inline-block; margin-bottom: 1rem; }
.specter-text { font-family: 'Cormorant', serif; font-weight: 300; font-size: 1rem; color: rgba(255,255,255,0.5); }
.specter-brand { font-size: 0.65rem; color: #4a4a6a; display: block; margin-top: 0.75rem; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
