:root {
    --glass-primary: rgba(255, 255, 255, 0.1);
    --glass-secondary: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.2);
    --neon-blue: #00d4ff;
    --neon-purple: #8b5cf6;
    --neon-pink: #f472b6;
    --dark-surface: rgba(15, 23, 42, 0.9);
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background: -o-linear-gradient( 315deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    background: linear-gradient( 135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

.header_row {
    min-height: 47px;
}

.main {
    max-width: 100vw;
    overflow: hidden;
}

.main>section {
    scroll-margin: 70px;
}


/* Liquid Glass Effects */

.glass-morphism {
    background: var(--glass-primary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: -o-linear-gradient( 305deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}


/* Morphing Animations */

.morph-blob {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    -webkit-animation: morph 8s ease-in-out infinite;
    animation: morph 8s ease-in-out infinite;
}

@-webkit-keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
    }
    75% {
        border-radius: 60% 40% 60% 30% / 60% 30% 70% 40%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
    }
    75% {
        border-radius: 60% 40% 60% 30% / 60% 30% 70% 40%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}


/* Gradient Text */

.gradient-text {
    background: -o-linear-gradient( 315deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    background: linear-gradient( 135deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Floating Animation */

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

@-webkit-keyframes float {
    0%,
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes float {
    0%,
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}


/* Pulse Animation */

.pulse-glow {
    -webkit-animation: pulse-glow 2s infinite;
    animation: pulse-glow 2s infinite;
}

@-webkit-keyframes pulse-glow {
    0%,
    100% {
        -webkit-box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
    50% {
        -webkit-box-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(139, 92, 246, 0.4);
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(139, 92, 246, 0.4);
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        -webkit-box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
    50% {
        -webkit-box-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(139, 92, 246, 0.4);
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(139, 92, 246, 0.4);
    }
}


/* Button Hover Effects */

.btn-primary {
    background: -o-linear-gradient(315deg, var(--neon-blue), var(--neon-purple));
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: -webkit-gradient( linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
    background: -o-linear-gradient( left, transparent, rgba(255, 255, 255, 0.2), transparent);
    background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    -webkit-transition: left 0.5s;
    -o-transition: left 0.5s;
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}


/* Responsive Typography */

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    font-family: "Space Grotesk", sans-serif;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
    opacity: 0.9;
}

.hero_mobile {
    position: relative;
    max-width: 100%;
    width: 295px;
}

.hero_mobile::before {
    content: "";
    display: block;
    padding-bottom: 206.7796%;
    height: 0px;
}

.hero_mobile>* {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.hero_mobile img{
    pointer-events: none;
}
.hero_mobile video {
    object-fit: contain;
    border-radius: 46px;
    padding: 10px;
    background-color: white;
    background-clip: content-box;
}


/* Feature Grid */

.feature-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}


/* Pricing Cards */

.pricing-card {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}


/* Social Proof */

.testimonial-card {
    background: -o-linear-gradient( 305deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 1rem;
}


/* Stats Counter Animation */

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neon-blue);
}


/* Device Mockup */

.device-mockup {
    width: 300px;
    height: 600px;
    background: -o-linear-gradient( 305deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 40px;
    border: 8px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: -o-linear-gradient(315deg, #1e293b, #334155);
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}


/* Scroll Indicators */

.scroll-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
}

.scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 8px 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.scroll-dot.active {
    background: var(--neon-blue);
    -webkit-box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.footer {
    border-radius: 24px 24px 0px 0px;
}


/* dashboard page style */

.liquid-button {
    background: -o-linear-gradient( 315deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.liquid-button:hover {
    background: -o-linear-gradient( 315deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.status-online {
    background: #00ff88;
    -webkit-box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

.status-offline {
    background: #ff4757;
    -webkit-box-shadow: 0 0 20px rgba(255, 71, 87, 0.6);
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.6);
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.floating-animation {
    -webkit-animation: float 6s ease-in-out infinite;
    animation: float 6s ease-in-out infinite;
}

.liquid-glow {
    -webkit-box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.ios-blur {
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.gradient-text {
    background: -o-linear-gradient(315deg, #667eea, #764ba2);
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.connection-badge {
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.notification-dot {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ff4757;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: 600;
}

.wave-animation {
    position: relative;
    overflow: hidden;
}

.wave-animation::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: -webkit-gradient( linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.3)), to(transparent));
    background: -o-linear-gradient( left, transparent, rgba(255, 255, 255, 0.3), transparent);
    background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    -webkit-animation: wave 3s infinite;
    animation: wave 3s infinite;
}

@-webkit-keyframes wave {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes wave {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.safe-area {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}


/* dashboard 2 */

.message {
    max-width: 80%;
    margin-bottom: 12px;
    word-wrap: break-word;
    position: relative;
    width: max-content;
}

.message-text {
    font-size: 14px;
    padding: 12px;
    border-radius: 16px;
}

.ai-message {
    align-self: flex-start;
    margin-right: auto;
}

.ai-message .message-text {
    background-color: #e9e9eb;
    color: #333;
    border-radius: 16px 16px 16px 0px;
}

.user-message {
    align-self: flex-end;
    margin-left: auto;
}

.user-message .message-text {
    background-color: #007aff;
    color: white;
    border-radius: 16px 16px 0px 16px;
}

.message-timestamp {
    font-size: 8px;
    margin-top: 2px;
    opacity: 0.7;
}


/* dashboard 3 */

.pulse-animation {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(139, 92, 246, 0.4);
    }
}

.chat-container {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.chat-container::-webkit-scrollbar {
    width: 6px;
}

.chat-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.chat-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.chat-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.chat-message {
    animation: slideInMessage 0.3s ease-out;
}

@keyframes slideInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-bubble {
    background: linear-gradient( 145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 12px 16px;
    max-width: 280px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.ai-bubble {
    background: linear-gradient( 145deg, rgba(139, 92, 246, 0.2), rgba(244, 114, 182, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.user-bubble {
    background: linear-gradient( 145deg, rgba(0, 212, 255, 0.2), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    margin-left: auto;
}

.chat-bubble .chat-timestamp {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    text-align: right;
}

.user-bubble .chat-bubble {
    margin-left: auto;
}

.user-bubble .chat-timestamp {
    text-align: left;
}


/* Responsive chat styles */

@media (max-width: 768px) {
    .chat-bubble {
        max-width: 220px;
        padding: 10px 12px;
    }
    .chat-container {
        padding-right: 8px;
    }
}

@media (max-width: 640px) {
    .chat-bubble {
        max-width: 180px;
        padding: 8px 10px;
    }
    .chat-bubble p {
        font-size: 13px;
    }
}

/* blog page */
.article_container article>img{
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    margin-bottom: 1.2rem;
}
.article_container h1{
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.article_container header{
    margin-bottom: 2rem;
}
.article_container section{
    margin-bottom: 1.5rem;
}
.article_container h2{
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.article_container p{
    margin-bottom: 1.1rem;
}
.article_container a{
    color: #3B82F6;
    text-decoration: underline;
}
.article_container ul ,
.article_container ol {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}
.article_container ul{
    list-style:disc;
}
.article_container ol{
    list-style-type: decimal;
}
.article_container hr{
    margin-bottom: 1.2rem;
}
.article_container table{
    width: 100%;
    margin-bottom: 1.2rem;
}
.article_container table,
.article_container tr,
.article_container td{
    border: 1px solid gray;
}