/* monopole.systems */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: linear-gradient(to bottom, #f0f9ff, #e0f2fe); color: #0c4a6e; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; min-height: 100vh; }
.hero { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 3rem 2rem; }
.glossy-card { background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, transparent 40%), #ffffff; border-radius: 12px; border: 1px solid #bae6fd; padding: 2rem; }
.hero-card { text-align: center; max-width: 480px; }
.brand { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(1.5rem, 4vw, 2.2rem); color: #0c4a6e; }
.tagline { font-size: 0.9rem; color: #0284c7; margin-top: 0.3rem; }
.status { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: #22c55e; margin-top: 0.75rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; display: inline-block; }
.status-dot.small { width: 4px; height: 4px; }
.components { max-width: 560px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.card-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; color: #0c4a6e; margin-bottom: 0.3rem; }
.card-text { font-size: 0.8rem; color: #64748b; }
.pipeline { display: flex; align-items: center; justify-content: center; gap: 0; padding: 2rem; flex-wrap: wrap; }
.pipe-node { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.7rem; background: #ffffff; border: 1px solid #bae6fd; border-radius: 20px; padding: 8px 20px; color: #0284c7; }
.pipe-line { width: 40px; height: 2px; background: #bae6fd; }
.dashboard { max-width: 560px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.metric-tile { background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, transparent 40%), #ffffff; border: 1px solid #bae6fd; border-radius: 12px; padding: 1.25rem; text-align: center; flex: 1; min-width: 130px; }
.metric-value { font-family: 'JetBrains Mono', monospace; font-size: 1.3rem; color: #0284c7; display: block; }
.metric-label { font-size: 0.65rem; color: #64748b; display: block; margin: 0.2rem 0; }
.footer { text-align: center; padding: 3rem 2rem; }
.footer-brand { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.65rem; color: #93c5fd; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
