/* miris.dev */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0d1117; color: #c9d1d9; 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; }
.terminal { width: 100%; max-width: 640px; margin: 0 auto; }
.chrome { background: #21262d; border-radius: 8px 8px 0 0; padding: 10px 14px; display: flex; align-items: center; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.chrome-title { font-family: 'Fira Code', monospace; font-size: 0.7rem; color: #484f58; margin-left: 8px; }
.terminal-body { background: #161b22; padding: 1.5rem; border-radius: 0 0 8px 8px; }
.login { font-family: 'Fira Code', monospace; font-size: 0.7rem; color: #484f58; margin-bottom: 1rem; }
.command { font-family: 'Fira Code', monospace; font-size: 0.85rem; color: #c9d1d9; margin-bottom: 0.5rem; }
.prompt { color: #3fb950; }
.brand { font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: clamp(2rem, 6vw, 3rem); color: #58a6ff; margin-bottom: 0.25rem; }
.cursor { display: inline-block; width: 8px; height: 18px; background: #3fb950; animation: blink 1s step-end infinite; vertical-align: middle; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.ascii-divider { font-family: 'Fira Code', monospace; font-size: 0.7rem; color: #21262d; text-align: center; padding: 1rem 0; }
.projects { padding: 2rem 1.5rem; }
.project-output { margin: 1rem 0; padding-left: 1rem; border-left: 2px solid #21262d; }
.green-text { font-family: 'Fira Code', monospace; font-size: 0.85rem; color: #3fb950; margin-bottom: 0.25rem; }
.output-desc { font-size: 0.8rem; color: #8b949e; }
.skills { padding: 2rem 1.5rem; }
.skill-row { display: flex; justify-content: space-between; align-items: center; margin: 0.5rem 0; }
.skill-label { font-family: 'Fira Code', monospace; font-size: 0.8rem; color: #c9d1d9; }
.skill-bar { font-family: 'Fira Code', monospace; font-size: 0.75rem; color: #d29922; }
.logout { text-align: center; padding: 4rem 2rem; }
.close-text { font-family: 'Fira Code', monospace; font-size: 0.85rem; color: #484f58; margin-top: 0.5rem; }
.footer-brand { font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 0.6rem; color: #21262d; display: block; margin-top: 1rem; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
