/* AIENTURE Design System */
:root {
    --primary: #3D1DF2;
    --accent-rose: #F8E7F0;
    --background-light: #f8fbfc;
    --background-dark: #102122;
    --onyx: #1A1A1A;
    --soft-gray: #F5F5F5;
    --accent-warm: #FFB800;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--background-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    letter-spacing: -0.025em;
    color: var(--onyx);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Glassmorphism Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(61, 29, 242, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.btn-onyx {
    background-color: var(--onyx);
    color: white;
}

.btn-rose {
    background-color: var(--accent-rose);
    color: var(--onyx);
    border: 1px solid #ffd1dc;
}

/* Custom Effects from Stitch Template */
.hero-gradient {
    background: radial-gradient(circle at 50% 0%, #f5f3ff 0%, #fcfcfc 100%);
}

.soft-shadow {
    box-shadow: 0 20px 50px -12px rgba(50, 17, 212, 0.15);
}

.text-glow {
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
}

.animate-bounce-slow {
    animation: bounce 3s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-5%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* Utils */
.text-primary {
    color: var(--primary);
}

.text-warm {
    color: var(--accent-warm);
}

.bg-onyx {
    background-color: var(--onyx);
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}