/* moral.quest */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0f0f0f; color: #ffffff; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; }
.hero { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.broken-title { font-family: 'Cormorant', serif; font-weight: 300; text-align: center; line-height: 0.95; }
.broken-title .big { font-size: clamp(3rem, 10vw, 6rem); display: inline; }
.broken-title .small { font-size: clamp(1rem, 3vw, 1.8rem); color: #e8e8e8; display: inline; }
.void { height: 200px; background: #0a0a0a; }
.void-sm { height: 100px; background: #0a0a0a; }
.void-large { height: 300px; background: #0a0a0a; }
.dilemma { max-width: 560px; margin: 0 auto; padding: 4rem 2rem; position: relative; }
.dilemma-id { font-family: 'Fira Code', monospace; font-size: 0.6rem; color: #525252; display: block; margin-bottom: 1rem; }
.ghost-q { position: absolute; right: 0; top: 0; font-family: 'Cormorant', serif; font-weight: 700; font-size: 15rem; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; }
.dilemma-question { font-family: 'Cormorant', serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.5rem; }
.dilemma-context { font-size: 0.85rem; color: #888; margin-bottom: 1.5rem; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.choice { padding: 1rem; }
.choice-a { border-left: 2px solid #3b82f6; }
.choice-b { border-left: 2px solid #ef4444; }
.choice-label { font-family: 'Fira Code', monospace; font-size: 0.6rem; display: block; margin-bottom: 0.3rem; }
.choice-a .choice-label { color: #3b82f6; }
.choice-b .choice-label { color: #ef4444; }
.choice-text { font-size: 0.8rem; color: #aaa; }
.reflection { text-align: center; padding: 6rem 2rem; }
.reflection-text { font-family: 'Cormorant', serif; font-weight: 300; font-size: clamp(1.2rem, 3vw, 1.8rem); color: rgba(255,255,255,0.4); }
.end { text-align: center; padding: 4rem 2rem; }
.thin-line { width: 40px; height: 1px; background: rgba(255,255,255,0.15); margin: 0 auto 1.5rem; }
.close-text { font-size: 0.85rem; color: #525252; }
.footer-brand { font-size: 0.6rem; color: #333; 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); }
@media (max-width: 500px) { .choice-grid { grid-template-columns: 1fr; } }
