<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>VAPORA - Multi-Agent Development Platform</title>
<!-- UnoCSS Generated CSS -->
<link rel="stylesheet" href="/assets/styles/website.css" />
<style>
/* Base reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Root variables */
:root {
--bg-primary: #0a0118;
--bg-glass: rgba(255, 255, 255, 0.05);
--bg-glass-hover: rgba(255, 255, 255, 0.08);
--accent-cyan: #22d3ee;
--accent-purple: #a855f7;
--accent-pink: #ec4899;
--border-glass: rgba(34, 211, 238, 0.3);
--text-primary: #ffffff;
--text-secondary: #cbd5e1;
/* Base styles */
html, body {
width: 100%;
height: 100%;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
color: var(--text-primary);
#app { width: 100%; height: 100%; }
/* Loading spinner */
.loading {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
font-size: 1.5rem;
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
</style>
</head>
<body>
<div id="app">
<div class="loading">Loading VAPORA...</div>
</div>
</body>
</html>