/* =========================================
   ALPHIAN INC. - COMMAND CENTER STYLESHEET
   ========================================= */

:root {
    --bg-main: #0F172A;      /* Restored Beautiful Dark Navy */
    --bg-panel: #1E293B;     /* Rich Navy Card Color */
    --text-head: #ffffff;    /* Pure White */
    --text-body: #e2e8f0;    /* Soft Grey Text */
    --cyan: #00e5ff;         /* Technical Labels */
    --red: #dc2626;          /* Impact Red */
    --border: rgba(255, 255, 255, 0.1);
}

/* 1. THE "EMPTY PAGE" FIX: Restore Canvas to Background */
#bg-canvas {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none; /* Ensures it doesn't block mouse clicks */
}

/* 2. GLOBAL RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-main) !important;
    color: var(--text-body) !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
}

/* 3. AUTOMATIC TITLES (No more manual classes needed) */
h1 { color: var(--text-head); font-size: 3.5rem; margin-bottom: 20px; }
h1 span { color: var(--red); } /* Forces any <span> in an H1 to be Red */

h2 { color: var(--text-head); font-size: 2.2rem; margin-bottom: 20px; border-left: 3px solid var(--red); padding-left: 15px; }
h2 span { color: var(--red); }

/* Small labels (like "Our Philosophy") are automatically Cyan */
h3, .label-cyan { color: var(--cyan); text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 10px; font-weight: bold; }

/* 4. PROFESSIONAL CARDS & BOXES */
.guarantee-banner, .roi-box {
    border-left: 4px solid var(--red) !important; 
    background: rgba(220, 38, 38, 0.05) !important; /* Subtle Red tint instead of green */
    padding: 40px;
    margin: 40px 0;
}

.alphian-card, .glass-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 8px;
}

/* 5. BUTTONS */
.btn-primary, .btn-magical {
    background: var(--red) !important; 
    color: white !important;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-primary:hover, .btn-magical:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}