:root {
    --bg: #0b0b16;
    --card: #121225;
    --muted: #a3a3ba;
    --brand: #a855f7;
    --btnleft: #A968FF;
    --btnright: #D388FE;
    --ring: 0 0 24px rgba(236, 72, 153, .45);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

html,
body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
    background: radial-gradient(1200px 600px at 15% -10%, rgba(10, 7, 32), transparent), radial-gradient(1200px 700px at 100% 0, rgba(53, 30, 93, 0.4), transparent), var(--bg);
    color: white
}

.btn {
    @apply inline-flex items-center gap-2 rounded-full px-5 py-2.5 text-sm font-semibold shadow-lg;
    background: linear-gradient(135deg, var(--btnleft), var(--btnright));
    border: 1px solid #7E45C9;
    box-shadow: var(--ring);
    padding: 0.5rem 2rem;
    border-radius: 9999px;
}

.btn:hover {
    background: linear-gradient(135deg, var(--btnright), #351E5D);
    box-shadow: 0 0 24px rgba(236, 72, 153, .45);
    border: 1px solid #7E45C9;
}

.glass {
    background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .08)
}

.badge {
    @apply text-xs font-semibold px-3 py-1 rounded-full;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08)
}

section[id] {
    scroll-margin-top: 60px;
}

/* Floating icons */
.float-1 {
    animation: float1 6s ease-in-out infinite
}

.float-2 {
    animation: float2 7s ease-in-out infinite
}

.float-3 {
    animation: float3 8s ease-in-out infinite
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) rotate(0)
    }

    50% {
        transform: translateY(-12px) rotate(6deg)
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(0)
    }

    50% {
        transform: translateY(-14px) rotate(-5deg)
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0) rotate(0)
    }

    50% {
        transform: translateY(-18px) rotate(4deg)
    }
}

.card-hover {
    transition: transform .25s ease, box-shadow .25s ease, border .25s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, .25);
    border: 1px solid #7E45C9
}

.divider {
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, .4), rgba(236, 72, 153, .5), transparent);
    height: 1px
}

/* Electric lines */
.zap path {
    stroke-dasharray: 6 10;
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, .9));
    animation: dash 2.5s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -100
    }
}

/* Carousel */
.carousel-track {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.carousel-item {
    scroll-snap-align: center;
    flex: 0 0 85%;
    max-width: 400px;
}

.carousel-track::-webkit-scrollbar {
    display: none
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.faq-q {
    cursor: pointer
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}