/* miris.tech */
/* Colors: #0a0f1a, #121a2e, #00d4aa, #4a9eff, #ffa726, #e0e6ed, #8892a4 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 15px; line-height: 1.75; background: #0a0f1a; color: #e0e6ed; overflow-x: hidden; }
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; background: radial-gradient(ellipse at center, #121a2e 0%, #0a0f1a 70%); }
.molecule { width: 120px; height: 120px; border: 1px solid rgba(0, 212, 170, 0.3); border-radius: 50%; margin-bottom: 32px; animation: rotate 60s linear infinite; position: relative; }
.molecule::before { content: ""; position: absolute; top: 20%; left: 20%; width: 60%; height: 60%; border: 1px solid rgba(0, 212, 170, 0.2); border-radius: 50%; }
@keyframes rotate { to { transform: rotate(360deg); } }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: clamp(2.5rem, 6vw, 4rem); color: #e0e6ed; letter-spacing: 0.04em; opacity: 0; animation: fadeIn 1.5s 0.5s ease forwards; }
.hero-sub { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: #8892a4; letter-spacing: 0.05em; margin-top: 12px; opacity: 0; animation: fadeIn 1s 1.5s ease forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.section { padding: 100px 40px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.5rem); color: #e0e6ed; margin-bottom: 40px; }
.section-text { font-size: 16px; color: #8892a4; max-width: 520px; margin-bottom: 40px; }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 700px; width: 100%; }
.glass-panel { backdrop-filter: blur(20px); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 28px; text-align: left; transition: border-color 0.3s ease; }
.glass-panel:hover { border-color: rgba(0, 212, 170, 0.3); }
.panel-tall { grid-row: span 2; }
.glass-panel h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 16px; color: #00d4aa; margin-bottom: 12px; }
.glass-panel p { font-size: 14px; color: #8892a4; }
.data-label { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #00d4aa; margin-top: 12px; letter-spacing: 0.05em; }
.indicator { width: 12px; height: 12px; border-radius: 50%; background: #00d4aa; box-shadow: 0 0 12px rgba(0, 212, 170, 0.5); animation: pulse 3s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 12px rgba(0, 212, 170, 0.3); } 50% { box-shadow: 0 0 24px rgba(0, 212, 170, 0.6); } }
.site-footer { text-align: center; padding: 48px 40px; background: #0a0f1a; }
.site-footer p { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #8892a4; opacity: 0.5; }
@media (max-width: 768px) { .panel-grid { grid-template-columns: 1fr; } .panel-tall { grid-row: span 1; } .section { padding: 60px 24px; } }
