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

:root {
    --primary: #FF5C00;
    --primary-hover: #E65200;
    --glow-primary: rgba(255, 92, 0, 0.4);
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* === Navigation === */
.glass-nav {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* === Animations === */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

  .hero-proof { margin-top: 4rem; display: flex; align-items: center; gap: 2rem; justify-content: center; flex-wrap: wrap; }
  .proof-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); }
  .proof-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--muted2); }
 .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
@keyframes float {

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

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

.modal-enter {
    animation: modalEnter 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalEnter {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Premium Modal Enhancements */
.premium-modal-backdrop {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.premium-modal-content {
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-gradient-bg {
    background: linear-gradient(135deg, #FF5C00 0%, #FF8A00 100%);
}

.modal-input {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.modal-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 92, 0, 0.1);
    transform: translateY(-1px);
}

.modal-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.modal-btn:active::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% { transform: scale(0, 0); opacity: 0.5; }
    100% { transform: scale(40, 40); opacity: 0; }
}

/* Scroll-triggered fade-in */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse CTA glow */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 92, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 35px rgba(255, 92, 0, 0.55), 0 0 60px rgba(255, 92, 0, 0.15);
    }
}

.cta-glow {
    animation: pulseGlow 2.5s ease-in-out infinite;
}

/* Section CTA banner */
.section-cta-banner {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%);
    border: 1px solid rgba(255, 92, 0, 0.15);
    border-radius: 16px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.section-cta-banner:hover {
    box-shadow: 0 8px 30px rgba(255, 92, 0, 0.12);
    transform: translateY(-2px);
}

.section-cta-banner .cta-text {
    font-size: 0.95rem;
    color: #78350f;
    font-weight: 600;
}

.section-cta-banner .cta-text .highlight {
    color: var(--primary);
    font-weight: 800;
}

/* Inline CTA link style */
.inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.inline-cta:hover {
    gap: 10px;
    color: var(--primary-hover);
}

/* Feature card hover glow */
.feature-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #f97316, #fbbf24);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 3px 3px 0 0;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 92, 0, 0.08);
}

/* Sticky floating CTA bar */
.floating-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 92, 0, 0.2);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-cta-bar.show {
    transform: translateY(0);
}

/* Badge pulse */
@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.badge-live {
    animation: badgePulse 1.5s ease-in-out infinite;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), #f97316, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Workflow card connector line */
@media (min-width: 768px) {
    .workflow-connector {
        position: relative;
    }

    .workflow-connector::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -16px;
        width: 32px;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 92, 0, 0.4), transparent);
    }

    .workflow-connector:last-child::after {
        display: none;
    }
}

/* Urgency countdown style */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 92, 0, 0.1);
    border: 1px solid rgba(255, 92, 0, 0.2);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Custom AI Neural Canvas styling */
.ai-neural-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* behind the text (z-10) but above the background */
    pointer-events: none;
    /* so users don't interact with it if not intended, allows highlighting text */
    opacity: 0.3;
    /* Slight transparency so text is perfectly readable */
}