/* BAYFRONT CLOUD - SOVEREIGN OPERATIONS - FULL RECOVERY */

:root {
    --navy: #020617;
    --darker: #010409;
    --blue: #0066ff;
    --blue-glow: rgba(0, 102, 255, 0.4);
    --slate: #94a3b8;
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.07);
    --accent: #00ff88;
}

/* 1. MASTER LAYOUT & GRID BACKGROUND */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--navy);
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 2. NAVBAR & NAVIGATION (Restored) */
.navbar {
    width: 100%;
    padding: 10px 0;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
}

.container-fluid {
    width: 100%;
    max-width: 1600px;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { height: 80px; filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.2)); }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
    color: var(--slate);
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portal-link {
    background: var(--blue);
    color: white !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
}

/* 3. MAIN RENDER AREA */
#render-area {
    width: 100%;
    max-width: 1600px;
    padding: 100px 80px;
    flex: 1;
}

/* 4. STATUS BAR & PULSE */
.status-bar {
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid var(--border);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    margin-bottom: 40px;
    border-radius: 4px;
}

.status-pulse {
    height: 8px; width: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

/* 5. TYPOGRAPHY */
.hero-title {
    font-size: 110px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -5px;
    background: linear-gradient(to bottom, #fff 40%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--slate);
    max-width: 700px;
    line-height: 1.6;
    border-left: 2px solid var(--blue);
    padding-left: 25px;
    margin-bottom: 60px;
}

.data-label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue);
}

/* 6. SERVICE CARDS & PRICING GRID */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 50px 40px;
    position: relative;
    transition: 0.3s ease;
}

.service-card:hover { border-color: var(--blue); background: rgba(0, 102, 255, 0.03); }

.metric-tag {
    position: absolute;
    top: 25px; right: 30px;
    font-family: monospace;
    font-size: 10px;
    color: var(--blue);
    background: rgba(0, 102, 255, 0.1);
    padding: 5px 12px;
}

.service-list { list-style: none; margin: 20px 0; }
.service-list li {
    font-size: 14px;
    color: var(--slate);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}
.service-list li::before { content: "→"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }

/* 7. THE TECHNICAL SPEC GRID (Restored) */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
    margin-top: 80px;
}

.spec-item {
    padding: 40px;
    border-right: 1px solid var(--border);
}

.spec-item:last-child { border-right: none; }

.spec-label { font-size: 10px; font-weight: 900; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.spec-value { font-size: 18px; font-weight: 700; color: var(--white); font-style: italic; }

/* 8. FOOTER */
.footer {
    width: 100%;
    padding: 60px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 10px;
    color: #444;
}