* {
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #f8fafc;
    color: #0f172a;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

.dot-grid {
    background-image: radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
}

.grad-text {
    background: linear-gradient(135deg, #0D2137 0%, #1E3A8A 60%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grad-text-subtle {
    background: linear-gradient(135deg, #0D2137 0%, #1E3A8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.85;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0D2137;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(13, 33, 55, 0.15);
}

.btn-primary:hover {
    background: #1E3A8A;
    box-shadow: 0 6px 20px rgba(13, 33, 55, 0.25);
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(13, 33, 55, 0.6);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(13, 33, 55, 0.15);
    transition: all 0.2s ease;
}

.btn-ghost:hover {
    color: #0D2137;
    border-color: rgba(13, 33, 55, 0.3);
    background: rgba(13, 33, 55, 0.04);
}

.card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.015);
    transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.6);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.4);
}

.inp {
    width: 100%;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    font-size: 13px;
    color: #0f172a;
    transition: all 0.15s;
}

.inp::placeholder {
    color: rgba(15, 23, 42, 0.35);
}

.inp:focus {
    outline: none;
    border-color: rgba(15, 23, 42, 0.2);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.06);
}

.divider {
    border-color: rgba(15, 23, 42, 0.06);
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

.pulse {
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-6px);
    }
}

.float {
    animation: float 5s ease-in-out infinite;
}

.float-2 {
    animation: float 5s ease-in-out 1.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.cursor {
    animation: blink 1s step-end infinite;
}


@keyframes fill {
    from {
        width: 0
    }

    to {
        width: var(--w)
    }
}

.fill-bar {
    animation: fill 2s ease-out 0.6s both;
}

select option {
    background: #ffffff;
    color: #0f172a;
}

.terminal-card {
    background: #0b0f19 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25) !important;
}

.terminal-card:hover {
    background: #0e1422 !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.terminal-card .divider {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.terminal-card .text-white\/20 {
    color: rgba(255, 255, 255, 0.25) !important;
}

.terminal-card .text-white\/30 {
    color: rgba(255, 255, 255, 0.45) !important;
}

.terminal-card .text-white\/25 {
    color: rgba(255, 255, 255, 0.35) !important;
}

.terminal-card .bg-emerald-500\/\[0\.07\] {
    background: rgba(16, 185, 129, 0.08) !important;
}

.main-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-dark {
    background-color: #f8fafc;
    background-image:
        radial-gradient(ellipse at 20% 40%, rgba(13, 33, 55, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 90%, rgba(30, 58, 138, 0.04) 0%, transparent 50%);
}

.hero-dark.dot-grid {
    background-image:
        radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
        radial-gradient(ellipse at 20% 40%, rgba(13, 33, 55, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 90%, rgba(30, 58, 138, 0.04) 0%, transparent 50%);
    background-size: 28px 28px, 100% 100%, 100% 100%;
}

nav {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

nav.at-top {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.01) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(13, 33, 55, 0.08) !important;
    box-shadow: 0 4px 24px rgba(13, 33, 55, 0.06) !important;
}

nav .nav-link {
    color: rgba(13, 33, 55, 0.5);
    font-weight: 500;
    transition: color 0.15s ease;
}

nav .nav-link:hover {
    color: #0D2137;
}

nav .nav-btn {
    background: #0D2137;
    color: #ffffff;
    transition: all 0.2s ease;
}

nav .nav-btn:hover {
    background: #1a3060;
    transform: translateY(-1px);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.015);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.12);
}

.pricing-card.recommended {
    border-color: #0D2137;
    box-shadow: 0 8px 30px rgba(13, 33, 55, 0.1);
}

.pricing-card.recommended:hover {
    box-shadow: 0 16px 40px rgba(13, 33, 55, 0.16);
}

.pricing-card.bg-slate-900,
.pricing-card.bg-gradient-to-br {
    background: unset;
    border: unset;
}

.pricing-card.bg-slate-900 {
    background-color: #0D2137;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card.bg-slate-900:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 36px rgba(13, 33, 55, 0.4);
}

.pricing-card.bg-gradient-to-br {
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.pricing-card.bg-gradient-to-br:hover {
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 12px 36px rgba(139, 92, 246, 0.12);
}

.billing-btn {
    background: transparent;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.billing-btn:hover {
    background: #f1f5f9;
    color: #334155;
}

.billing-btn.billing-active {
    background: #0D2137;
    color: #ffffff;
    border-color: #0D2137;
}

.scrollbar-none::-webkit-scrollbar {
    display: none;
}

.scrollbar-none {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-carousel {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    scroll-snap-align: center;
    flex: 0 0 auto;
    width: 380px;
    max-width: 85vw;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.15);
    transform: scale(1.05);
}

.carousel-btn:active {
    transform: scale(0.95);
}

