@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
    --primary: #00f2ff; /* Neon Cyan */
    --dark: #0f172a;    /* Deep Navy */
    --darker: #020617;  /* Almost Black */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--darker);
    color: white;
}

/* Neon Glow Effects */
.text-primary { 
    color: var(--primary) !important; 
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--darker);
    font-weight: 900;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 0; /* Sharp, aggressive corners */
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%); /* Cyberpunk shape */
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: white;
    color: var(--darker);
    border-color: white;
    box-shadow: 0 0 20px var(--primary);
}

.btn-outline-light {
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
}

/* Hero Section */
header {
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 1)), url('https://images.unsplash.com/photo-1601362840469-51e4d8d58785?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Scroll Spy Offset */
section { scroll-margin-top: 80px; }