/* ----------------------------------------
   Hosted Runners - Tech/Infrastructure Theme
   Dark modern, purple/industrial feel
   Font: Inter (clean, professional)
   ---------------------------------------- */

:root {
    --primary-color: #9333EA;
    --secondary-color: #0f3460;
    --accent-color: #9333EA;
    --neutral-color: #16213e;
    --highlight-color: #9333EA;
    --success: #39D98A;
    --warning: #FFCC00;
    --error: #FF3B30;
    --info: #17A2B2;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    --black: #000000;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.landing-page {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #E8E8E8;
    font-family: 'Inter', sans-serif;
}

.landing-header h1 {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
}

.tagline {
    color: #A0AEC0;
    font-weight: 300;
}

.waitlist-section {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(147, 51, 234, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(147, 51, 234, 0.1);
    backdrop-filter: blur(10px);
}

.waitlist-section h2 {
    color: #FFFFFF;
}

.waitlist-section > p {
    color: #94A3B8;
}

.form-group input {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(147, 51, 234, 0.3);
    color: #E8E8E8;
}

.form-group input::placeholder {
    color: #64748B;
}

.form-group input:focus {
    border-color: #9333EA;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.2);
    background: rgba(15, 23, 42, 0.9);
}

.btn-primary {
    background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(147, 51, 234, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A855F7 0%, #9333EA 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.5);
}

.feature-list li {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(147, 51, 234, 0.2);
}

h2, h3 {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.features-preview h3 {
    color: #C084FC;
}

.landing-footer {
    color: #64748B;
}
