/* monopole.cloud */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #ffffff; color: #1e293b; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; }
.gradient-bar { height: 4px; background: linear-gradient(to right, #3b82f6, #8b5cf6); }
.hero { text-align: center; padding: 5rem 2rem 3rem; }
.brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); color: #1e293b; }
.tagline { font-size: 0.9rem; color: #64748b; margin-top: 0.5rem; }
.status { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: #22c55e; margin-top: 1rem; 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; }
.services { max-width: 600px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.service-card { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.08); border-radius: 8px; padding: 1.5rem; }
.service-icon { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #3b82f6, #8b5cf6); margin-bottom: 0.75rem; }
.service-icon.icon-tri { border-radius: 0; clip-path: polygon(50% 0%, 100% 100%, 0% 100%); }
.service-icon.icon-hex { border-radius: 0; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
.service-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.service-text { font-size: 0.8rem; color: #64748b; }
.divider { border: none; border-top: 1px solid #e2e8f0; max-width: 600px; margin: 2rem auto; }
.infra { max-width: 600px; margin: 0 auto; padding: 1rem 1.5rem 3rem; }
.infra-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.5rem; }
.uptime-bar { display: flex; height: 8px; border-radius: 4px; overflow: hidden; gap: 1px; margin-bottom: 0.5rem; }
.uptime-segment { height: 100%; }
.uptime-segment.green { background: #22c55e; }
.uptime-segment.amber { background: #f59e0b; }
.uptime-value { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #22c55e; }
.footer { text-align: center; padding: 3rem 2rem; border-top: 1px solid #e2e8f0; }
.footer-link { font-size: 0.75rem; color: #64748b; margin: 0 0.75rem; }
.footer-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.65rem; color: #94a3b8; 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); }
