:root {
--primary: #5100ff;
--primary-light: #7b42ff;
--secondary: #00d4ff;
--dark: #0f172a;
--light: #f8fafc;
--glass: rgba(255, 255, 255, 0.1);
--glass-border: rgba(255, 255, 255, 0.2);
--text-main: #1e293b;
--text-muted: #64748b;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
0% { box-shadow: 0 0 5px var(--primary); }
50% { box-shadow: 0 0 20px var(--primary); }
100% { box-shadow: 0 0 5px var(--primary); }
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
background: #0f172a;
color: var(--text-main);
line-height: 1.6;
overflow-x: hidden;
min-height: 100vh;
}

.bg-blobs {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
background: radial-gradient(circle at top right, #1e1b4b, #0f172a);
}

.blob {
position: absolute;
width: 500px;
height: 500px;
background: var(--primary);
filter: blur(100px);
opacity: 0.15;
border-radius: 50%;
}

.blob-1 { top: -100px; right: -100px; }
.blob-2 { bottom: -100px; left: -100px; animation: glow 8s infinite; }

nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem 5%;
background: rgba(15, 23, 42, 0.8);
backdrop-filter: blur(10px);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid var(--glass-border);
}

.logo {
font-size: 1.8rem;
font-weight: 800;
background: linear-gradient(45deg, #fff, var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-decoration: none;
}

.nav-links {
display: flex;
gap: 2rem;
align-items: center;
}

.nav-links a {
color: #cbd5e1;
text-decoration: none;
font-weight: 500;
transition: var(--transition);
}

.nav-links a:hover {
color: var(--secondary);
}

.btn {
padding: 0.8rem 1.8rem;
border-radius: 12px;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
text-decoration: none;
display: inline-block;
border: none;
font-size: 0.95rem;
}

.btn-primary {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(81, 0, 255, 0.3);
}

.btn-outline {
border: 1px solid var(--glass-border);
color: white;
background: var(--glass);
backdrop-filter: blur(5px);
}

.btn-outline:hover {
background: white;
color: var(--dark);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem 5%;
}

.hero {
min-height: 80vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 4rem 5%;
animation: fadeIn 0.8s ease-out;
}

.hero h1 {
font-size: 4rem;
color: white;
margin-bottom: 1.5rem;
line-height: 1.1;
}

.hero p {
font-size: 1.25rem;
color: #94a3b8;
max-width: 700px;
margin-bottom: 2.5rem;
}

.glass-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 24px;
padding: 2rem;
transition: var(--transition);
color: white;
}

.glass-card:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.2);
}

.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.input-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}

.input-group label {
color: #cbd5e1;
font-size: 0.9rem;
}

input, select, textarea {
padding: 1rem;
border-radius: 12px;
background: rgba(15, 23, 42, 0.5);
border: 1px solid var(--glass-border);
color: white;
font-size: 1rem;
transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
outline: none;
border-color: var(--secondary);
background: rgba(15, 23, 42, 0.8);
}

footer {
padding: 4rem 5%;
text-align: center;
border-top: 1px solid var(--glass-border);
margin-top: 4rem;
color: #64748b;
}

.badge {
padding: 0.4rem 1rem;
border-radius: 50px;
font-size: 0.8rem;
font-weight: 600;
text-transform: uppercase;
}

.badge-open { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.badge-closed { background: rgba(239, 68, 68, 0.2); color: #f87171; }

.section-title {
font-size: 2.5rem;
color: white;
text-align: center;
margin-bottom: 3rem;
}

/* Animations */
[data-aos] {
opacity: 0;
transform: translateY(30px);
transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
opacity: 1;
transform: translateY(0);
}

@media (max-width: 768px) {
.hero h1 { font-size: 2.5rem; }
.nav-links { display: none; }
}