/* miris.tech */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: linear-gradient(135deg, #0f172a, #1e1b4b); color: #e2e8f0; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; min-height: 100vh; }
.hero { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; position: relative; }
.glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(129,140,248,0.2), transparent); pointer-events: none; }
.brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2.5rem, 7vw, 4rem); color: #e2e8f0; position: relative; z-index: 1; margin-bottom: 1.5rem; }
.glass { background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; }
.hero-panel { padding: 1.5rem 2rem; max-width: 480px; text-align: center; position: relative; z-index: 1; }
.tagline { font-size: 0.8rem; color: #34d399; display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-bottom: 0.5rem; }
.green-dot { width: 6px; height: 6px; border-radius: 50%; background: #34d399; display: inline-block; }
.hero-text { font-size: 0.9rem; color: #94a3b8; }
.features { max-width: 560px; margin: 0 auto; padding: 3rem 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.feature-panel { padding: 1.5rem; }
.icon-shape { width: 32px; height: 32px; margin-bottom: 0.75rem; }
.icon-shape.circle { border-radius: 50%; background: rgba(129,140,248,0.3); border: 1px solid #818cf8; }
.icon-shape.triangle { width: 0; height: 0; border-left: 16px solid transparent; border-right: 16px solid transparent; border-bottom: 28px solid rgba(129,140,248,0.3); }
.icon-shape.hexagon { background: rgba(129,140,248,0.3); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
.feature-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; color: #e2e8f0; margin-bottom: 0.3rem; }
.feature-text { font-size: 0.8rem; color: #94a3b8; }
.metrics { max-width: 560px; margin: 0 auto; padding: 3rem 1.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.metric-card { padding: 1.5rem; text-align: center; flex: 1; min-width: 140px; }
.metric-value { font-family: 'JetBrains Mono', monospace; font-size: 1.5rem; color: #818cf8; display: block; margin-bottom: 0.25rem; }
.metric-label { font-size: 0.7rem; color: #64748b; }
.footer { text-align: center; padding: 4rem 2rem; }
.gradient-line { height: 1px; background: linear-gradient(90deg, transparent, #818cf8, transparent); max-width: 200px; margin: 0 auto 1.5rem; }
.footer-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.7rem; color: #334155; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
