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

body {
    font-family: 'Inter', sans-serif;
    background-color: #050a14;
    color: #ffffff;
    overflow-x: hidden;
}

.text-orange-nuova { color: #f28c28; }
.bg-orange-nuova { background-color: #f28c28; }
.border-orange-nuova { border-color: #f28c28; }
.from-orange-nuova { --tw-gradient-from: #f28c28; }
.to-orange-nuova { --tw-gradient-to: #f28c28; }

.text-nuova-body { color: #9ca3af; }
.text-nuova-muted { color: #6b7280; }
.text-nuova-dim { color: #4b5563; }
.text-nuova-subtle { color: #374151; }
.text-nuova-light { color: #d1d5db; }

.border-nuova-line { border-color: rgba(255, 255, 255, 0.1); }
.border-nuova-subtle { border-color: rgba(255, 255, 255, 0.05); }
.bg-nuova-glass { background: rgba(255, 255, 255, 0.05); }
.bg-nuova-overlay { background: rgba(0, 0, 0, 0.2); }

.placeholder-nuova-dim::placeholder { color: #4b5563; }

.network-grid {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(242, 140, 40, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: -1;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
.logo-sphere { animation: float 6s ease-in-out infinite; }

.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.glow-button {
    transition: all 0.3s ease;
    box-shadow: 0 0 0px rgba(242, 140, 40, 0);
}
.glow-button:hover {
    box-shadow: 0 0 25px rgba(242, 140, 40, 0.4);
    transform: translateY(-2px);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}
.glass-card:hover {
    border-color: rgba(242, 140, 40, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.gradient-border {
    position: relative;
}
.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.5), transparent, rgba(242, 140, 40, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.pulse-ring {
    animation: pulseRing 3s ease-in-out infinite;
}
@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.2; }
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

.pricing-card {
    transition: all 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(242, 140, 40, 0.4);
}
.pricing-card.featured {
    border-color: rgba(242, 140, 40, 0.4);
    background: rgba(242, 140, 40, 0.05);
}

html { scroll-behavior: smooth; }
