:root {
    --primary: #6b46f0;
    --accent: #00f5ff;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
}

.hero {
    background: linear-gradient(135deg, #1a0033 0%, #0a001f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, #0a001f);
}

.gradient-text {
    background: linear-gradient(90deg, #6b46f0, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(107, 70, 240, 0.2);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(107, 70, 240, 0.4);
    border-color: var(--primary);
}

.btn-primary {
    background: linear-gradient(90deg, #6b46f0, #8b5cf6);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(107, 70, 240, 0.4);
}