body {
    font-family: 'Inter', sans-serif;
    background-color: #0b0b0b;
    color: #ffffff;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in;
}

.fade-in.active {
    opacity: 1;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-primary {
    background: linear-gradient(135deg, #facc15 0%, #ca8a04 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Input styles */
input:focus, select:focus {
    outline: none;
    border-color: #facc15;
    box-shadow: 0 0 0 1px #facc15;
}

/* Pricing card bubble/glow hover */
.pricing-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250,204,21,0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    pointer-events: none;
    z-index: 0;
}
.pricing-card:hover::before {
    width: 600px;
    height: 600px;
}
.pricing-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(250,204,21,0.4);
    box-shadow: 0 0 40px rgba(250,204,21,0.15), 0 20px 60px rgba(0,0,0,0.4);
}
.pricing-card > * {
    position: relative;
    z-index: 1;
}
