/* ==========================================================================
   BOOSTINGR - PREMIUM SAAS STYLES
   Inspired by world-class modern SaaS design
   ========================================================================== */

   :root {
    /* Brand Colors derived from Boostingr */
    --c-primary: #3810C9;
    --c-primary-light: #5A35E5;
    --c-accent: #3810C9;
    --c-pink: #3810C9;
    
    /* Neutral / Dark Theme Colors */
    --c-bg: #030305;
    --c-bg-light: #0A0A0F;
    --c-surface: rgba(255, 255, 255, 0.02);
    --c-surface-hover: rgba(255, 255, 255, 0.04);
    --c-border: rgba(255, 255, 255, 0.08);
    --c-border-light: rgba(255, 255, 255, 0.15);
    
    --c-text-main: #FFFFFF;
    --c-text-muted: #A1A1AA;
    
    /* Semantic Colors */
    --c-success: #10B981;
    --c-error: #EF4444;
    --c-warning: #F59E0B;
    
    /* Gradients */
    --g-primary: linear-gradient(135deg, var(--c-primary), #5A35E5);
    --g-glow: linear-gradient(90deg, var(--c-primary), #5A35E5, #3810C9);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout & Spacing */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--c-bg);
    color: var(--c-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.text-gradient {
    color: var(--c-primary);
    background: none;
    -webkit-text-fill-color: currentColor;
    background-clip: initial;
}
.text-accent { color: var(--c-accent); }
.text-error { color: var(--c-error); }
.text-success { color: var(--c-success); }
.text-gray { color: var(--c-text-muted); }
.text-center { text-align: center; }

/* Spacing Utilities */
.section { padding: 120px 0; }
.section-sm { padding: 60px 0; }
.pb-0 { padding-bottom: 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-16 { margin-top: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-10 { padding: 2.5rem; }
.max-w-3xl { max-width: 48rem; width: 100%; }
.max-w-4xl { max-width: 56rem; width: 100%; }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* Structural Backgrounds & Borders */
.dark-bg { background-color: var(--c-bg-light); color: var(--c-text-main); }
.border-y {
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}
.border-t { border-top: 1px solid var(--c-border); }

/* Common Section Headers */
.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: 16px;
}
.section-title {
    font-size: 3rem;
    margin-bottom: 24px;
}
.section-desc {
    font-size: 1.15rem;
    color: var(--c-text-muted);
    margin: 0 auto;
}

/* Glass Panels */
.glass-panel {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px -1px rgba(0,0,0,0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 9999px; /* Pill shape standard for modern saas */
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}
.btn-primary {
    background: var(--c-text-main);
    color: var(--c-bg);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}
.btn-outline {
    background: transparent;
    border-color: var(--c-border-light);
    color: var(--c-text-main);
}
.btn-outline:hover {
    background: var(--c-surface-hover);
    border-color: var(--c-text-main);
}
.btn-ghost {
    background: transparent;
    color: var(--c-text-muted);
}
.btn-ghost:hover {
    color: var(--c-text-main);
}
.btn-xl {
    padding: 16px 36px;
    font-size: 1.1rem;
}
.btn-full { width: 100%; }

/* Shared public session nav. Keep logged-in header compact on every static page. */
.public-session-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 0;
}

.public-session-actions.is-authenticated {
    gap: 14px;
}

.public-profile-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: min(260px, 34vw);
    min-height: 48px;
    padding: 5px 16px 5px 5px;
    border: 1px solid rgba(56, 16, 201, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #111827;
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(56, 16, 201, 0.1);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.public-profile-chip:hover,
.public-profile-chip:focus-visible {
    color: #111827;
    transform: translateY(-1px);
    border-color: rgba(56, 16, 201, 0.28);
    box-shadow: 0 16px 34px rgba(56, 16, 201, 0.16);
    outline: none;
}

.public-profile-avatar {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    overflow: hidden;
    border-radius: 999px;
    background: #0b5f9f;
    color: #ffffff;
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.public-profile-avatar img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    border-radius: inherit;
}

.public-profile-text {
    display: block;
    min-width: 0;
    max-width: 178px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.public-logout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: #3810C9;
    color: #ffffff;
    cursor: pointer;
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 14px 28px rgba(56, 16, 201, 0.22);
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.public-logout-button:hover,
.public-logout-button:focus-visible {
    background: #2d0cb5;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(56, 16, 201, 0.26);
    outline: none;
}

.public-logout-button:disabled {
    cursor: progress;
    opacity: 0.76;
    transform: none;
}

@media (max-width: 767px) {
    .public-session-actions {
        gap: 10px;
    }

    .public-profile-chip {
        max-width: 48px;
        padding: 5px;
    }

    .public-profile-text {
        display: none;
    }

    .public-logout-button {
        min-height: 42px;
        padding: 0 18px;
        font-size: 13px;
    }
}

/* Layout Grids */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-row { display: flex; gap: 24px; }
.flex-1 { flex: 1; }
.items-center { align-items: center; }

/* Sticky Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    padding: 0;
    background: transparent;
    transition: var(--transition-smooth);
}
.navbar.scrolled {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    padding: 0 !important;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; }
.brand-logo-img { height: 32px; width: auto; }
.brand-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--c-text-muted); font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover { color: var(--c-text-main); }
.nav-actions { display: flex; gap: 16px; align-items: center; }
.mobile-menu-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* Hero Section */
.hero {
    position: relative;
    padding-top: 160px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-glow-bg {
    position: absolute;
    top: -20%; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(56,16,201,0.2) 0%, rgba(3,3,5,0) 70%);
    z-index: 0; pointer-events: none;
}
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative; z-index: 1;
}
.hero-content { max-width: 540px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 20px;
    background: var(--c-surface); border: 1px solid var(--c-border);
    font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
}
.hero-headline { font-size: 4.5rem; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 24px; }
.hero-subheadline { font-size: 1.2rem; color: var(--c-text-muted); margin-bottom: 40px; }
.hero-cta-wrap { display: flex; gap: 16px; margin-bottom: 24px; }
.hero-microcopy { display: flex; align-items: center; gap: 16px; font-size: 0.85rem; color: var(--c-text-muted); }
.dot-sep { color: var(--c-border-light); }

/* Hero Visual / Chat UI Simulation */
.product-window {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(56, 16, 201, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-visual:hover .product-window { transform: perspective(1000px) rotateY(0) rotateX(0); }
.window-header {
    background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--c-border);
    padding: 12px 20px; display: flex; align-items: center;
}
.window-dots { display: flex; gap: 8px; margin-right: 16px; }
.window-dots span { width: 10px; height: 10px; border-radius: 50%; background: #4B5563; }
.window-dots span:nth-child(1) { background: #EF4444; }
.window-dots span:nth-child(2) { background: #F59E0B; }
.window-dots span:nth-child(3) { background: #10B981; }
.window-title { font-size: 0.8rem; color: var(--c-text-muted); font-weight: 500; letter-spacing: 0.5px; }

.window-body { padding: 24px; min-height: 400px; position: relative; }
.anim-container { display: flex; flex-direction: column; gap: 20px; }

.chat-bubble {
    display: flex; gap: 16px; padding: 16px; border-radius: var(--radius-md);
    background: rgba(255,255,255,0.03); opacity: 0; transform: translateY(20px);
}
.avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.bot-avatar { background: var(--c-text-main); display: flex; align-items: center; justify-content: center; padding: 8px; }
.bubble-content strong { display: block; font-size: 0.9rem; margin-bottom: 4px; color: var(--c-text-main); }
.bubble-content p { font-size: 0.95rem; color: #D1D5DB; margin: 0; }
.bot-reply { background: rgba(56, 16, 201, 0.1); border: 1px solid rgba(56, 16, 201, 0.3); }

.analysis-tags { display: flex; flex-wrap: wrap; gap: 8px; padding-left: 56px; opacity: 0; transform: translateY(10px); }
.ai-tag { padding: 4px 12px; border-radius: 12px; font-size: 0.75rem; font-weight: 600; border: 1px solid; }
.ai-tag.sentiment { background: rgba(16, 185, 129, 0.1); color: #10B981; border-color: rgba(16, 185, 129, 0.2); }
.ai-tag.intent { background: rgba(0, 229, 255, 0.1); color: #00E5FF; border-color: rgba(0, 229, 255, 0.2); }
.ai-tag.action { background: var(--g-primary); color: white; border: none; }

.system-alert {
    padding: 12px 16px; border-radius: var(--radius-sm);
    background: rgba(0, 136, 204, 0.1); border: 1px solid rgba(0, 136, 204, 0.3); color: #0088cc;
    font-size: 0.85rem; font-weight: 500; display: flex; align-items: center; gap: 10px;
    opacity: 0; transform: translateY(10px); align-self: flex-start; margin-left: 56px;
}

/* Scenario Dots */
.scenario-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); }
.scenario-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: var(--transition-fast); }
.scenario-dots .dot.active { background: var(--c-accent); width: 24px; border-radius: 4px; }

/* Animations applied via JS classes */
.animate-in { animation: slideUpFade 0.5s forwards cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes slideUpFade { to { opacity: 1; transform: translateY(0); } }

/* Trust Banner */
.trust-banner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 32px 48px;
}
.meta-logo-col { display: flex; align-items: center; gap: 24px; max-width: 50%; }
.meta-icon { font-size: 3rem; color: #0668E1; }
.meta-logo-col h4 { font-size: 1.2rem; margin-bottom: 4px; }
.meta-logo-col p { font-size: 0.95rem; color: var(--c-text-muted); margin: 0; }
.stats-row { display: flex; gap: 48px; }
.stat-item { display: flex; flex-direction: column; align-items: flex-end; }
.stat-num { font-size: 2rem; font-family: var(--font-heading); font-weight: 800; color: var(--c-text-main); }
.stat-label { font-size: 0.85rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Social Proof Marquee */
.social-proof { padding: 40px 0; border-bottom: 1px solid var(--c-border); }
.marquee-wrapper { width: 100%; display: flex; }
.marquee { display: flex; animation: scrollLeft 30s linear infinite; gap: 80px; padding-right: 80px; }
.hover-pause:hover { animation-play-state: paused; }
.brand-logo { font-size: 1.5rem; font-weight: 700; color: var(--c-text-muted); display: flex; align-items: center; gap: 10px; filter: grayscale(100%); transition: var(--transition-fast); white-space: nowrap; }
.brand-logo:hover { filter: grayscale(0); color: var(--c-text-main); }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Platforms section */
.platform-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.platform-card { padding: 40px 24px; transition: var(--transition-smooth); border: 1px solid var(--c-border); }
.platform-card .icon { font-size: 3rem; color: #4B5563; margin-bottom: 24px; transition: var(--transition-fast); }
.platform-card h3 { font-size: 1.2rem; color: var(--c-text-muted); transition: var(--transition-fast); }
.badge-live, .badge-soon { display: inline-block; padding: 4px 12px; border-radius: 12px; font-size: 0.75rem; font-weight: 600; margin-top: 16px; }
.badge-live { background: rgba(16, 185, 129, 0.1); color: var(--c-success); border: 1px solid rgba(16,185,129,0.3); }
.badge-soon { background: var(--c-surface); color: var(--c-text-muted); border: 1px solid var(--c-border); }
.platform-card.active { background: rgba(56, 16, 201, 0.05); border-color: rgba(56, 16, 201, 0.3); }
.platform-card.active .icon { color: #E1306C; /* Insta brand color approx */ }
.platform-card.active h3 { color: var(--c-text-main); }
.platform-card:hover { transform: translateY(-5px); }

/* Problem Section */
.pain-points-list { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.pain-point { display: flex; gap: 16px; align-items: flex-start; }
.icon-box { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.error-box { background: rgba(239, 68, 68, 0.1); color: var(--c-error); border: 1px solid rgba(239,68,68,0.2); }
.pain-point h4 { font-size: 1.1rem; margin-bottom: 4px; }
.pain-point p { color: var(--c-text-muted); font-size: 0.95rem; margin: 0; }

.chaos-stack { position: relative; height: 400px; display: flex; justify-content: center; align-items: center; }
.mock-comment { position: absolute; padding: 16px 24px; border-radius: var(--radius-md); font-weight: 500; font-size: 0.95rem; box-shadow: 0 10px 30px rgba(0,0,0,0.5); backdrop-filter: blur(5px); }
.mock-comment.spam { top: 10%; left: 10%; background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239,68,68,0.3); color: #FCA5A5; transform: rotate(-5deg); }
.mock-comment.angry { top: 40%; right: 5%; background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245,158,11,0.3); color: #FCD34D; transform: rotate(3deg); }
.mock-comment.lead { bottom: 20%; left: 15%; background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16,185,129,0.3); color: #6EE7B7; transform: rotate(-2deg); }
.shield-overlay { position: absolute; z-index: 10; padding: 40px; text-align: center; border-color: rgba(0, 229, 255, 0.3); }
.pulse-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 100px; border-radius: 50%; border: 2px solid var(--c-accent); animation: pulse 2s infinite; opacity: 0; }
@keyframes pulse { 0% { width: 80px; height: 80px; opacity: 0.8; } 100% { width: 150px; height: 150px; opacity: 0; } }
.text-5xl { font-size: 3rem; }

/* How It Works (SendDM Vertical Style) */
.steps-vertical { display: flex; flex-direction: column; gap: 80px; max-width: 1000px; margin: 0 auto; }
.step-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.step-row.reverse .step-text { order: 2; }
.step-row.reverse .step-visual { order: 1; }
.step-number { width: 40px; height: 40px; border-radius: 50%; background: var(--c-surface); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; color: var(--c-accent); margin-bottom: 24px; }
.step-text h3 { font-size: 2rem; margin-bottom: 16px; }
.step-text p { color: var(--c-text-muted); font-size: 1.1rem; }
.step-visual { height: 300px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }

/* Visual Mocks for Steps */
.connect-mock { display: flex; align-items: center; gap: 20px; }
.animated-line { width: 60px; height: 2px; background: var(--g-glow); position: relative; overflow: hidden; }
.animated-line::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: #fff; box-shadow: 0 0 10px #fff; animation: flowLine 1.5s infinite; }
@keyframes flowLine { 100% { left: 100%; } }
.h-10 { height: 40px; }
.success-pill { position: absolute; bottom: 32px; background: rgba(16, 185, 129, 0.2); border: 1px solid rgba(16, 185, 129, 0.4); color: #10B981; padding: 8px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }

.form-mock { width: 80%; display: flex; flex-direction: column; gap: 12px; }
.mock-field { background: rgba(255,255,255,0.03); padding: 12px 16px; border-radius: var(--radius-sm); font-family: monospace; font-size: 0.85rem; color: #D1D5DB; border: 1px solid var(--c-border); }
.mock-field span { color: var(--c-text-muted); margin-right: 8px; }
.mock-field.error-border { border-color: rgba(239, 68, 68, 0.3); color: #FCA5A5; }
.mock-btn { background: var(--c-text-main); color: var(--c-bg); padding: 12px; text-align: center; border-radius: var(--radius-sm); font-weight: 600; font-family: var(--font-body); margin-top: 8px; }

.action-cascade { display: flex; flex-direction: column; gap: 16px; width: 80%; }
.action-item { background: rgba(255,255,255,0.05); padding: 16px; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 16px; font-weight: 500; font-size: 0.95rem; }
.tag { font-size: 0.7rem; font-weight: 800; padding: 4px 8px; border-radius: 4px; letter-spacing: 0.5px; }
.tag.hide { background: var(--c-error); color: white; }
.tag.reply { background: var(--c-success); color: white; }
.tag.alert { background: var(--c-accent); color: var(--c-bg); }

/* Dashboard Showcase */
.dashboard-interface { display: flex; border-radius: var(--radius-lg); overflow: hidden; height: 500px; border: 1px solid var(--c-border); }
.dash-sidebar { width: 240px; background: rgba(0,0,0,0.3); border-right: 1px solid var(--c-border); padding: 24px 12px; }
.dash-menu { padding: 12px 16px; margin-bottom: 8px; border-radius: var(--radius-sm); color: var(--c-text-muted); font-size: 0.95rem; font-weight: 500; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: var(--transition-fast); }
.dash-menu:hover { background: rgba(255,255,255,0.05); color: var(--c-text-main); }
.dash-menu.active { background: rgba(56, 16, 201, 0.15); color: var(--c-accent); border: 1px solid rgba(56, 16, 201, 0.3); }
.dash-main { flex: 1; display: flex; flex-direction: column; }
.dash-header { padding: 24px; border-bottom: 1px solid var(--c-border); display: flex; justify-content: space-between; align-items: center; }
.dash-header h3 { font-size: 1.2rem; }
.dash-stats { display: flex; gap: 24px; font-size: 0.9rem; color: var(--c-text-muted); }
.dash-stats strong { color: var(--c-text-main); margin-left: 6px; }
.dash-feed { padding: 24px; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
.dash-feed-item { background: rgba(255,255,255,0.02); border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 16px; }
.df-header { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.8rem; }
.badge { padding: 4px 10px; border-radius: 12px; font-weight: 600; }
.badge-success { background: rgba(16, 185, 129, 0.1); color: var(--c-success); }
.badge-error { background: rgba(239, 68, 68, 0.1); color: var(--c-error); }
.time { color: var(--c-text-muted); }
.df-user { font-size: 0.95rem; margin-bottom: 12px; }
.df-bot { display: flex; gap: 12px; background: rgba(56, 16, 201, 0.1); padding: 12px; border-radius: var(--radius-sm); margin-bottom: 12px; color: #D1D5DB; font-size: 0.9rem; }
.df-bot i { color: var(--c-accent); margin-top: 2px; }
.df-actions { display: flex; gap: 16px; }
.df-actions button { background: none; border: none; color: var(--c-text-muted); font-size: 0.85rem; font-weight: 500; cursor: pointer; }
.df-actions button:hover { color: var(--c-text-main); text-decoration: underline; }

/* Features Bento Grid */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bento-card { padding: 32px; display: flex; flex-direction: column; transition: transform 0.3s ease; border: 1px solid var(--c-border); }
.bento-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.feature-icon { font-size: 2rem; color: var(--c-text-main); margin-bottom: 24px; padding: 16px; background: rgba(255,255,255,0.05); border-radius: var(--radius-md); width: fit-content; }
.bento-card h4 { font-size: 1.25rem; margin-bottom: 12px; }
.bento-card p { color: var(--c-text-muted); font-size: 0.95rem; line-height: 1.6; }
.col-span-2 { grid-column: span 2; }
.lead-mock { display: flex; align-items: center; justify-content: center; background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%); border-radius: var(--radius-md); }
.alert-box { background: rgba(255,255,255,0.05); border: 1px solid var(--c-border); padding: 12px 20px; border-radius: var(--radius-sm); font-weight: 600; display: flex; align-items: center; gap: 10px; }

/* Highlight Feature (Brain pulse) */
.ai-brain-pulse { position: relative; display: inline-block; padding: 40px; }
.ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; border: 1px solid var(--c-primary); opacity: 0; animation: pulseRing 3s linear infinite; }
.r1 { width: 100px; height: 100px; animation-delay: 0s; }
.r2 { width: 100px; height: 100px; animation-delay: 1.5s; }
@keyframes pulseRing { 0% { width: 80px; height: 80px; opacity: 1; border-width: 2px; } 100% { width: 200px; height: 200px; opacity: 0; border-width: 1px; } }
.text-6xl { font-size: 4rem; }
.text-3xl { font-size: 2rem; }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 1.05rem; }

/* Testimonials Marquee */
.testi-card { padding: 32px; width: 400px; flex-shrink: 0; display: flex; flex-direction: column; }
.stars { color: #F59E0B; margin-bottom: 20px; font-size: 0.9rem; }
.quote { font-size: 1.1rem; line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.author { display: flex; align-items: center; gap: 16px; }
.author img { width: 48px; height: 48px; border-radius: 50%; }
.author strong { display: block; font-size: 1rem; }
.author span { font-size: 0.85rem; color: var(--c-text-muted); }

/* Pricing */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.price-card { padding: 40px; display: flex; flex-direction: column; border: 1px solid var(--c-border); }
.price-card.popular { background: linear-gradient(180deg, rgba(56, 16, 201, 0.1) 0%, rgba(255,255,255,0.02) 100%); border-color: rgba(56, 16, 201, 0.4); position: relative; transform: scale(1.05); z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.popular-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--c-text-main); color: var(--c-bg); padding: 4px 12px; border-radius: 12px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.price-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--c-text-muted); margin-bottom: 16px; }
.price-val { font-size: 3.5rem; font-family: var(--font-heading); font-weight: 800; line-height: 1; margin-bottom: 8px; }
.price-val.custom { font-size: 2.5rem; }
.price-val span { font-size: 1rem; font-family: var(--font-body); font-weight: 400; color: var(--c-text-muted); display: block; margin-top: 4px; }
.billing-term { font-size: 0.85rem; color: var(--c-accent); margin-bottom: 24px; font-weight: 500; }
.price-features { margin: 32px 0; display: flex; flex-direction: column; gap: 16px; flex-grow: 1; }
.price-features li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: #D1D5DB; }
.price-features i { color: var(--c-text-muted); font-size: 0.85rem; }
.price-features i.text-accent { color: var(--c-accent); }

.pricing-table-wrap { overflow-x: auto; padding: 1px; }
.pricing-table { width: 100%; border-collapse: collapse; text-align: left; }
.pricing-table th { padding: 24px; border-bottom: 1px solid var(--c-border); font-size: 1.1rem; }
.pricing-table td { padding: 20px 24px; border-bottom: 1px solid var(--c-border); color: #D1D5DB; }
.pricing-table td.no-border { border-bottom: none; }
.text-sm { font-size: 0.85rem; }

/* FAQ Accordion */
.accordion { display: flex; flex-direction: column; gap: 16px; }
.acc-item { border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition-fast); }
.acc-header { padding: 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: rgba(255,255,255,0.01); }
.acc-header h4 { font-size: 1.1rem; font-weight: 500; margin: 0; }
.acc-header .icon { transition: transform 0.3s ease; color: var(--c-text-muted); }
.acc-item.open .acc-header .icon { transform: rotate(45deg); color: var(--c-text-main); }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1); background: transparent; }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body-inner { overflow: hidden; }
.acc-body-content { padding: 0 24px 24px 24px; }
.acc-body-content p { color: var(--c-text-muted); font-size: 0.95rem; margin: 0; }

.ai-tag.intent { background: rgba(0, 229, 255, 0.1); color: #00E5FF; border-color: rgba(0, 229, 255, 0.2); }
.ai-tag.action { background: var(--g-primary); color: white; border: none; }

.system-alert {
    padding: 12px 16px; border-radius: var(--radius-sm);
    background: rgba(0, 136, 204, 0.1); border: 1px solid rgba(0, 136, 204, 0.3); color: #0088cc;
    font-size: 0.85rem; font-weight: 500; display: flex; align-items: center; gap: 10px;
    opacity: 0; transform: translateY(10px); align-self: flex-start; margin-left: 56px;
}

/* Scenario Dots */
.scenario-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); }
.scenario-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: var(--transition-fast); }
.scenario-dots .dot.active { background: var(--c-accent); width: 24px; border-radius: 4px; }

/* Animations applied via JS classes */
.animate-in { animation: slideUpFade 0.5s forwards cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes slideUpFade { to { opacity: 1; transform: translateY(0); } }

/* Trust Banner */
.trust-banner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 32px 48px;
}
.meta-logo-col { display: flex; align-items: center; gap: 24px; max-width: 50%; }
.meta-icon { font-size: 3rem; color: #0668E1; }
.meta-logo-col h4 { font-size: 1.2rem; margin-bottom: 4px; }
.meta-logo-col p { font-size: 0.95rem; color: var(--c-text-muted); margin: 0; }
.stats-row { display: flex; gap: 48px; }
.stat-item { display: flex; flex-direction: column; align-items: flex-end; }
.stat-num { font-size: 2rem; font-family: var(--font-heading); font-weight: 800; color: var(--c-text-main); }
.stat-label { font-size: 0.85rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Social Proof Marquee */
.social-proof { padding: 40px 0; border-bottom: 1px solid var(--c-border); }
.marquee-wrapper { width: 100%; display: flex; }
.marquee { display: flex; animation: scrollLeft 30s linear infinite; gap: 80px; padding-right: 80px; }
.hover-pause:hover { animation-play-state: paused; }
.brand-logo { font-size: 1.5rem; font-weight: 700; color: var(--c-text-muted); display: flex; align-items: center; gap: 10px; filter: grayscale(100%); transition: var(--transition-fast); white-space: nowrap; }
.brand-logo:hover { filter: grayscale(0); color: var(--c-text-main); }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Platforms section */
.platform-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.platform-card { padding: 40px 24px; transition: var(--transition-smooth); border: 1px solid var(--c-border); }
.platform-card .icon { font-size: 3rem; color: #4B5563; margin-bottom: 24px; transition: var(--transition-fast); }
.platform-card h3 { font-size: 1.2rem; color: var(--c-text-muted); transition: var(--transition-fast); }
.badge-live, .badge-soon { display: inline-block; padding: 4px 12px; border-radius: 12px; font-size: 0.75rem; font-weight: 600; margin-top: 16px; }
.badge-live { background: rgba(16, 185, 129, 0.1); color: var(--c-success); border: 1px solid rgba(16,185,129,0.3); }
.badge-soon { background: var(--c-surface); color: var(--c-text-muted); border: 1px solid var(--c-border); }
.platform-card.active { background: rgba(56, 16, 201, 0.05); border-color: rgba(56, 16, 201, 0.3); }
.platform-card.active .icon { color: #E1306C; /* Insta brand color approx */ }
.platform-card.active h3 { color: var(--c-text-main); }
.platform-card:hover { transform: translateY(-5px); }

/* Problem Section */
.pain-points-list { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.pain-point { display: flex; gap: 16px; align-items: flex-start; }
.icon-box { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.error-box { background: rgba(239, 68, 68, 0.1); color: var(--c-error); border: 1px solid rgba(239,68,68,0.2); }
.pain-point h4 { font-size: 1.1rem; margin-bottom: 4px; }
.pain-point p { color: var(--c-text-muted); font-size: 0.95rem; margin: 0; }

.chaos-stack { position: relative; height: 400px; display: flex; justify-content: center; align-items: center; }
.mock-comment { position: absolute; padding: 16px 24px; border-radius: var(--radius-md); font-weight: 500; font-size: 0.95rem; box-shadow: 0 10px 30px rgba(0,0,0,0.5); backdrop-filter: blur(5px); }
.mock-comment.spam { top: 10%; left: 10%; background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239,68,68,0.3); color: #FCA5A5; transform: rotate(-5deg); }
.mock-comment.angry { top: 40%; right: 5%; background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245,158,11,0.3); color: #FCD34D; transform: rotate(3deg); }
.mock-comment.lead { bottom: 20%; left: 15%; background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16,185,129,0.3); color: #6EE7B7; transform: rotate(-2deg); }
.shield-overlay { position: absolute; z-index: 10; padding: 40px; text-align: center; border-color: rgba(0, 229, 255, 0.3); }
.pulse-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 100px; border-radius: 50%; border: 2px solid var(--c-accent); animation: pulse 2s infinite; opacity: 0; }
@keyframes pulse { 0% { width: 80px; height: 80px; opacity: 0.8; } 100% { width: 150px; height: 150px; opacity: 0; } }
.text-5xl { font-size: 3rem; }

/* How It Works (SendDM Vertical Style) */
.steps-vertical { display: flex; flex-direction: column; gap: 80px; max-width: 1000px; margin: 0 auto; }
.step-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.step-row.reverse .step-text { order: 2; }
.step-row.reverse .step-visual { order: 1; }
.step-number { width: 40px; height: 40px; border-radius: 50%; background: var(--c-surface); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; color: var(--c-accent); margin-bottom: 24px; }
.step-text h3 { font-size: 2rem; margin-bottom: 16px; }
.step-text p { color: var(--c-text-muted); font-size: 1.1rem; }
.step-visual { height: 300px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }

/* Visual Mocks for Steps */
.connect-mock { display: flex; align-items: center; gap: 20px; }
.animated-line { width: 60px; height: 2px; background: var(--g-glow); position: relative; overflow: hidden; }
.animated-line::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: #fff; box-shadow: 0 0 10px #fff; animation: flowLine 1.5s infinite; }
@keyframes flowLine { 100% { left: 100%; } }
.h-10 { height: 40px; }
.success-pill { position: absolute; bottom: 32px; background: rgba(16, 185, 129, 0.2); border: 1px solid rgba(16, 185, 129, 0.4); color: #10B981; padding: 8px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }

.form-mock { width: 80%; display: flex; flex-direction: column; gap: 12px; }
.mock-field { background: rgba(255,255,255,0.03); padding: 12px 16px; border-radius: var(--radius-sm); font-family: monospace; font-size: 0.85rem; color: #D1D5DB; border: 1px solid var(--c-border); }
.mock-field span { color: var(--c-text-muted); margin-right: 8px; }
.mock-field.error-border { border-color: rgba(239, 68, 68, 0.3); color: #FCA5A5; }
.mock-btn { background: var(--c-text-main); color: var(--c-bg); padding: 12px; text-align: center; border-radius: var(--radius-sm); font-weight: 600; font-family: var(--font-body); margin-top: 8px; }

.action-cascade { display: flex; flex-direction: column; gap: 16px; width: 80%; }
.action-item { background: rgba(255,255,255,0.05); padding: 16px; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 16px; font-weight: 500; font-size: 0.95rem; }
.tag { font-size: 0.7rem; font-weight: 800; padding: 4px 8px; border-radius: 4px; letter-spacing: 0.5px; }
.tag.hide { background: var(--c-error); color: white; }
.tag.reply { background: var(--c-success); color: white; }
.tag.alert { background: var(--c-accent); color: var(--c-bg); }

/* Dashboard Showcase */
.dashboard-interface { display: flex; border-radius: var(--radius-lg); overflow: hidden; height: 500px; border: 1px solid var(--c-border); }
.dash-sidebar { width: 240px; background: rgba(0,0,0,0.3); border-right: 1px solid var(--c-border); padding: 24px 12px; }
.dash-menu { padding: 12px 16px; margin-bottom: 8px; border-radius: var(--radius-sm); color: var(--c-text-muted); font-size: 0.95rem; font-weight: 500; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: var(--transition-fast); }
.dash-menu:hover { background: rgba(255,255,255,0.05); color: var(--c-text-main); }
.dash-menu.active { background: rgba(56, 16, 201, 0.15); color: var(--c-accent); border: 1px solid rgba(56, 16, 201, 0.3); }
.dash-main { flex: 1; display: flex; flex-direction: column; }
.dash-header { padding: 24px; border-bottom: 1px solid var(--c-border); display: flex; justify-content: space-between; align-items: center; }
.dash-header h3 { font-size: 1.2rem; }
.dash-stats { display: flex; gap: 24px; font-size: 0.9rem; color: var(--c-text-muted); }
.dash-stats strong { color: var(--c-text-main); margin-left: 6px; }
.dash-feed { padding: 24px; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
.dash-feed-item { background: rgba(255,255,255,0.02); border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 16px; }
.df-header { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.8rem; }
.badge { padding: 4px 10px; border-radius: 12px; font-weight: 600; }
.badge-success { background: rgba(16, 185, 129, 0.1); color: var(--c-success); }
.badge-error { background: rgba(239, 68, 68, 0.1); color: var(--c-error); }
.time { color: var(--c-text-muted); }
.df-user { font-size: 0.95rem; margin-bottom: 12px; }
.df-bot { display: flex; gap: 12px; background: rgba(56, 16, 201, 0.1); padding: 12px; border-radius: var(--radius-sm); margin-bottom: 12px; color: #D1D5DB; font-size: 0.9rem; }
.df-bot i { color: var(--c-accent); margin-top: 2px; }
.df-actions { display: flex; gap: 16px; }
.df-actions button { background: none; border: none; color: var(--c-text-muted); font-size: 0.85rem; font-weight: 500; cursor: pointer; }
.df-actions button:hover { color: var(--c-text-main); text-decoration: underline; }

/* Features Bento Grid */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bento-card { padding: 32px; display: flex; flex-direction: column; transition: transform 0.3s ease; border: 1px solid var(--c-border); }
.bento-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.feature-icon { font-size: 2rem; color: var(--c-text-main); margin-bottom: 24px; padding: 16px; background: rgba(255,255,255,0.05); border-radius: var(--radius-md); width: fit-content; }
.bento-card h4 { font-size: 1.25rem; margin-bottom: 12px; }
.bento-card p { color: var(--c-text-muted); font-size: 0.95rem; line-height: 1.6; }
.col-span-2 { grid-column: span 2; }
.lead-mock { display: flex; align-items: center; justify-content: center; background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%); border-radius: var(--radius-md); }
.alert-box { background: rgba(255,255,255,0.05); border: 1px solid var(--c-border); padding: 12px 20px; border-radius: var(--radius-sm); font-weight: 600; display: flex; align-items: center; gap: 10px; }

/* Highlight Feature (Brain pulse) */
.ai-brain-pulse { position: relative; display: inline-block; padding: 40px; }
.ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; border: 1px solid var(--c-primary); opacity: 0; animation: pulseRing 3s linear infinite; }
.r1 { width: 100px; height: 100px; animation-delay: 0s; }
.r2 { width: 100px; height: 100px; animation-delay: 1.5s; }
@keyframes pulseRing { 0% { width: 80px; height: 80px; opacity: 1; border-width: 2px; } 100% { width: 200px; height: 200px; opacity: 0; border-width: 1px; } }
.text-6xl { font-size: 4rem; }
.text-3xl { font-size: 2rem; }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 1.05rem; }

/* Testimonials Marquee */
.testi-card { padding: 32px; width: 400px; flex-shrink: 0; display: flex; flex-direction: column; }
.stars { color: #F59E0B; margin-bottom: 20px; font-size: 0.9rem; }
.quote { font-size: 1.1rem; line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.author { display: flex; align-items: center; gap: 16px; }
.author img { width: 48px; height: 48px; border-radius: 50%; }
.author strong { display: block; font-size: 1rem; }
.author span { font-size: 0.85rem; color: var(--c-text-muted); }

/* Pricing */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.price-card { padding: 40px; display: flex; flex-direction: column; border: 1px solid var(--c-border); }
.price-card.popular { background: linear-gradient(180deg, rgba(56, 16, 201, 0.1) 0%, rgba(255,255,255,0.02) 100%); border-color: rgba(56, 16, 201, 0.4); position: relative; transform: scale(1.05); z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.popular-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--c-text-main); color: var(--c-bg); padding: 4px 12px; border-radius: 12px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.price-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--c-text-muted); margin-bottom: 16px; }
.price-val { font-size: 3.5rem; font-family: var(--font-heading); font-weight: 800; line-height: 1; margin-bottom: 8px; }
.price-val.custom { font-size: 2.5rem; }
.price-val span { font-size: 1rem; font-family: var(--font-body); font-weight: 400; color: var(--c-text-muted); display: block; margin-top: 4px; }
.billing-term { font-size: 0.85rem; color: var(--c-accent); margin-bottom: 24px; font-weight: 500; }
.price-features { margin: 32px 0; display: flex; flex-direction: column; gap: 16px; flex-grow: 1; }
.price-features li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: #D1D5DB; }
.price-features i { color: var(--c-text-muted); font-size: 0.85rem; }
.price-features i.text-accent { color: var(--c-accent); }

.pricing-table-wrap { overflow-x: auto; padding: 1px; }
.pricing-table { width: 100%; border-collapse: collapse; text-align: left; }
.pricing-table th { padding: 24px; border-bottom: 1px solid var(--c-border); font-size: 1.1rem; }
.pricing-table td { padding: 20px 24px; border-bottom: 1px solid var(--c-border); color: #D1D5DB; }
.pricing-table td.no-border { border-bottom: none; }
.text-sm { font-size: 0.85rem; }

/* FAQ Accordion */
.accordion { display: flex; flex-direction: column; gap: 16px; }
.acc-item { border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition-fast); }
.acc-header { padding: 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: rgba(255,255,255,0.01); }
.acc-header h4 { font-size: 1.1rem; font-weight: 500; margin: 0; }
.acc-header .icon { transition: transform 0.3s ease; color: var(--c-text-muted); }
.acc-item.open .acc-header .icon { transform: rotate(45deg); color: var(--c-text-main); }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1); background: transparent; }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body-inner { overflow: hidden; }
.acc-body-content { padding: 0 24px 24px 24px; }
.acc-body-content p { color: var(--c-text-muted); font-size: 0.95rem; margin: 0; }

/* Final CTA */
.cta-box { padding: 80px 40px; text-align: center; border-radius: var(--radius-xl); position: relative; z-index: 1; background: rgba(10, 10, 15, 0.8); border: 1px solid rgba(255,255,255,0.1); }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; background: radial-gradient(ellipse at center, rgba(56, 16, 201, 0.4) 0%, transparent 70%); z-index: 0; filter: blur(40px); }
.cta-headline { font-size: 3.5rem; margin-bottom: 24px; letter-spacing: -0.03em; }
.cta-desc { font-size: 1.15rem; color: var(--c-text-muted); max-width: 600px; margin: 0 auto 40px; }
/* Footer */
.footer { padding: 80px 0 40px; background: var(--c-bg); color: var(--c-text-main); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-desc { color: var(--c-text-muted); font-size: 0.95rem; margin-top: 16px; max-width: 300px; }
.social-links { display: flex; gap: 16px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: var(--c-surface); display: flex; align-items: center; justify-content: center; color: var(--c-text-muted); transition: var(--transition-fast); }
.social-links a:hover { background: var(--c-text-main); color: var(--c-bg); }
.footer-links-col h4 { font-size: 1rem; margin-bottom: 24px; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col a { color: var(--c-text-muted); font-size: 0.95rem; }
.footer-links-col a:hover { color: var(--c-text-main); }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--c-border); color: var(--c-text-muted); font-size: 0.9rem; }
.make-in-india { font-weight: 600; color: #D1D5DB; display: flex; align-items: center; gap: 8px; }
.make-in-india span { font-size: 1.2rem; }

.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 64px 0 26px;
    background:
        radial-gradient(circle at 13% 16%, rgba(255, 255, 255, 0.16), transparent 28rem),
        radial-gradient(circle at 74% 4%, rgba(196, 192, 255, 0.28), transparent 30rem),
        radial-gradient(circle at 86% 82%, rgba(12, 0, 80, 0.32), transparent 26rem),
        linear-gradient(135deg, #4214df 0%, #3810C9 38%, #2d00d0 68%, #25008f 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(72px);
    opacity: 0.34;
    z-index: 0;
}

.footer-orb-a {
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -140px;
    background: rgba(255, 255, 255, 0.12);
}

.footer-orb-b {
    width: 260px;
    height: 260px;
    right: 8%;
    top: -120px;
    background: rgba(196, 192, 255, 0.26);
}

.footer-watermark {
    position: absolute;
    left: 50%;
    bottom: -0.26em;
    transform: translateX(-50%);
    z-index: 0;
    color: rgba(255, 255, 255, 0.045);
    font-size: clamp(5rem, 14vw, 16rem);
    font-weight: 900;
    line-height: 0.75;
    letter-spacing: -0.08em;
    white-space: nowrap;
    pointer-events: none;
}

.footer-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
    padding: clamp(28px, 4vw, 48px);
    margin-bottom: 64px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.055)),
        rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 26px 70px rgba(18, 0, 96, 0.22);
}

.footer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-kicker span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.72);
}

.footer-showcase h2 {
    max-width: 820px;
    color: #ffffff;
    font-size: clamp(2rem, 4.2vw, 4.75rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.footer-showcase-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.footer-primary-action,
.footer-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 340ms var(--ease-press), background-color 340ms var(--ease-premium),
                color 340ms var(--ease-premium), border-color 340ms var(--ease-premium);
}

.footer-primary-action {
    background: #ffffff;
    color: #2d00d0;
}

.footer-secondary-action {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.footer-primary-action:hover,
.footer-secondary-action:hover {
    transform: translateY(-2px);
}

.footer-secondary-action:hover {
    background: rgba(255, 255, 255, 0.16);
}

.site-footer .footer-top {
    grid-template-columns: minmax(300px, 1.18fr) repeat(3, minmax(190px, 0.72fr));
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
    margin-bottom: 34px;
}

.site-footer .footer-brand-col {
    max-width: 360px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.site-footer .footer-desc {
    max-width: 340px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.04rem;
    line-height: 1.55;
    letter-spacing: -0.01em;
}

.footer-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-proof-row span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.site-footer .social-links {
    gap: 12px;
    margin-top: 26px;
}

.site-footer .social-links a {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 360ms var(--ease-press), border-color 360ms var(--ease-premium),
                background-color 360ms var(--ease-premium), color 360ms var(--ease-premium);
}

.site-footer .social-links a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.42);
    color: #ffffff;
}

.site-footer .footer-links-col h4 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.site-footer .footer-links-col {
    padding-top: 10px;
}

.site-footer .footer-links-col ul {
    gap: 15px;
}

.site-footer .footer-links-col a,
.site-footer .footer-contact-item {
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    line-height: 1.5;
}

.site-footer .footer-links-col a {
    display: inline-flex;
    width: fit-content;
    transition: transform 260ms var(--ease-premium), color 260ms var(--ease-premium);
}

.site-footer .footer-links-col a:hover {
    transform: translateX(4px);
    color: #ffffff;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: start;
    gap: 13px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-top: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    opacity: 0.88;
    font-size: 1rem;
}

.footer-contact-item a:hover {
    transform: none !important;
}

.site-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.94rem;
}

.footer-bottom-note {
    color: rgba(255, 255, 255, 0.54);
}

/* Reveal Animations (Triggered by Intersection Observer in JS) */
.reveal-up { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
    transition-delay: var(--delay, 0s);
    will-change: transform, opacity;
}
.reveal-left { 
    opacity: 0; 
    transform: translateX(-30px); 
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
    transition-delay: var(--delay, 0s);
    will-change: transform, opacity;
}
.reveal-right { 
    opacity: 0; 
    transform: translateX(30px); 
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
    transition-delay: var(--delay, 0s);
    will-change: transform, opacity;
}
.reveal-visible { opacity: 1; transform: translate(0); }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-headline { font-size: 3.5rem; }
    .split-grid, .steps-vertical .step-row { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .step-row.reverse .step-text { order: 1; }
    .step-row.reverse .step-visual { order: 2; }
    .step-number { margin: 0 auto 24px; }
    .pain-point { flex-direction: column; align-items: center; text-align: center; }
    .bento-grid, .pricing-cards { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .col-span-2 { grid-column: span 1; }
    .flex-row { flex-direction: column; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .site-footer .footer-top {
        grid-template-columns: 1.2fr 1fr;
        gap: 44px;
    }
    .site-footer .footer-brand-col {
        grid-column: 1 / -1;
        max-width: 560px;
    }
    .footer-showcase {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .footer-showcase-actions {
        justify-content: flex-start;
    }
    .price-card.popular { transform: none; }
}

@media (max-width: 768px) {
    .hero-layout { grid-template-columns: 1fr; text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero-cta-wrap, .hero-microcopy { justify-content: center; }
    .nav-links, .nav-actions { display: none; } /* Mobile menu simplified */
    .mobile-menu-toggle { display: block; }
    .trust-banner { flex-direction: column; gap: 32px; text-align: center; padding: 32px 24px; }
    .meta-logo-col { max-width: 100%; flex-direction: column; }
    .stats-row { width: 100%; justify-content: space-around; gap: 0; }
    .platform-cards { grid-template-columns: 1fr 1fr; }
    .dashboard-interface { flex-direction: column; height: auto; }
    .dash-sidebar { width: 100%; display: flex; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--c-border); }
    .dash-menu { white-space: nowrap; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-brand-col { align-items: center; display: flex; flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .site-footer {
        padding: 64px 0 30px;
    }
    .footer-showcase {
        padding: 24px;
        margin-bottom: 46px;
        border-radius: 20px;
    }
    .footer-showcase h2 {
        letter-spacing: -0.04em;
    }
    .footer-showcase-actions {
        width: 100%;
    }
    .footer-primary-action,
    .footer-secondary-action {
        flex: 1;
        min-width: 130px;
    }
    .site-footer .footer-top {
        grid-template-columns: 1fr;
        gap: 42px;
        text-align: left;
    }
    .site-footer .footer-brand-col {
        align-items: flex-start;
        text-align: left;
        padding: 22px;
        max-width: none;
    }
    .site-footer .footer-desc {
        margin-top: 26px;
        font-size: 1.06rem;
    }
    .site-footer .footer-links-col h4 {
        margin-bottom: 18px;
    }
    .site-footer .footer-links-col ul {
        gap: 14px;
    }
    .site-footer .footer-bottom {
        align-items: flex-start;
        text-align: left;
    }
    .footer-bottom-note {
        max-width: 280px;
    }
}

/* =========================================
   Light Mode Overrides for White Sections
   ========================================= */
.section:not(.dark-bg) {
    color: #000;
}
.section:not(.dark-bg) h1,
.section:not(.dark-bg) h2,
.section:not(.dark-bg) h3,
.section:not(.dark-bg) h4,
.section:not(.dark-bg) strong {
    color: #000 !important;
}
.section:not(.dark-bg) p,
.section:not(.dark-bg) .section-desc,
.section:not(.dark-bg) .text-gray,
.section:not(.dark-bg) .mock-field,
.section:not(.dark-bg) .pricing-table td,
.section:not(.dark-bg) li,
.section:not(.dark-bg) .brand-logo {
    color: #4b5563 !important;
}
.section:not(.dark-bg) .glass-panel,
.section:not(.dark-bg) .step-number,
.section:not(.dark-bg) .mock-field,
.section:not(.dark-bg) .action-item,
.section:not(.dark-bg) .price-card,
.section:not(.dark-bg) .bento-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 24px -1px rgba(0,0,0,0.06);
}
.section:not(.dark-bg) .window-header,
.section:not(.dark-bg) .chat-bubble {
    background: #f8f9fa;
    border-color: rgba(0,0,0,0.05);
}
.section:not(.dark-bg) .price-val,
.section:not(.dark-bg) .price-val span,
.section:not(.dark-bg) th,
.section:not(.dark-bg) td {
    color: #000 !important;
}

/* =========================================
   Brand Theme Overrides for Dark Sections
   ========================================= */
.dark-bg {
    background-color: var(--c-primary) !important;
}
/* Sticky Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    padding: 0;
    background: transparent;
    transition: var(--transition-smooth);
}
.navbar.scrolled {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    padding: 0 !important;
}
/* 1. Testimonial Cards Style */
.dark-bg .testi-card {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border-radius: var(--radius-lg) !important;
}
.dark-bg .testi-card .quote {
    color: #1f2937 !important;
}
.dark-bg .testi-card .author strong {
    color: #111827 !important;
}
.dark-bg .testi-card .author span {
    color: #6b7280 !important;
}

/* 2. FAQ Accordion Cards Style */
.dark-bg .acc-item {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}
.dark-bg .acc-header {
    background: #ffffff !important;
}
.dark-bg .acc-header h4 {
    color: #111827 !important;
    font-weight: 600 !important;
}
.dark-bg .acc-header .icon {
    color: #3810C9 !important;
}
.dark-bg .acc-body-content p {
    color: #4b5563 !important;
}

/* 3. Dashboard Interface Style */
.dark-bg .dashboard-interface {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}
.dark-bg .dash-sidebar {
    background: #f8f9fa !important;
    border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-bottom: none !important;
}
.dark-bg .dash-menu {
    color: #4b5563 !important;
}
.dark-bg .dash-menu:hover {
    background: rgba(0, 0, 0, 0.03) !important;
    color: #000000 !important;
}
.dark-bg .dash-menu.active {
    background: rgba(56, 16, 201, 0.08) !important;
    color: #3810C9 !important;
    border-color: rgba(56, 16, 201, 0.15) !important;
}
.dark-bg .dash-main {
    background: #ffffff !important;
}
.dark-bg .dash-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}
.dark-bg .dash-header h3 {
    color: #000000 !important;
}
.dark-bg .dash-stats {
    color: #6b7280 !important;
}
.dark-bg .dash-stats strong {
    color: #000000 !important;
}
.dark-bg .dash-feed-item {
    background: #fdfdfd !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}
.dark-bg .df-user {
    color: #1f2937 !important;
}
.dark-bg .df-bot {
    background: rgba(56, 16, 201, 0.05) !important;
    color: #374151 !important;
}
.dark-bg .df-bot i {
    color: #3810C9 !important;
}
.dark-bg .df-actions button {
    color: #6b7280 !important;
}
.dark-bg .df-actions button:hover {
    color: #000000 !important;
}
.dark-bg .time {
    color: #9ca3af !important;
}

/* 4. Text and Header Overrides inside all Dark Sections */
.dark-bg .section-eyebrow {
    color: rgba(255, 255, 255, 0.9) !important;
}
.dark-bg .section-desc {
    color: rgba(255, 255, 255, 0.95) !important;
}
.dark-bg .section-title {
    color: #ffffff !important;
}

/* 5. Custom Brand Gradient Class matching the violet-to-pink gradient */
.brand-text-gradient {
    color: #3810C9 !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    background-clip: initial !important;
    display: inline-block !important;
}

/* 5a. On dark backgrounds brand text should be white for visibility */
.dark-bg .brand-text-gradient,
.dark-bg .text-gradient {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: initial !important;
}

/* 5b. Accent color: white on dark, blue on light */
.dark-bg .text-accent {
    color: #ffffff !important;
}

/* 6. Bento Grid Feature Icon Styling Fix for White Background Cards */
.section:not(.dark-bg) .feature-icon {
    color: #3810C9 !important;
    background: rgba(56, 16, 201, 0.08) !important;
    border: 1px solid rgba(56, 16, 201, 0.15) !important;
}

/* ==========================================================================
   1. PREMIUM PAGE PRELOADER (Dynamic Wave Loading Card)
   ========================================================================== */

body.preloader-active {
    overflow: hidden !important;
}

.preloader-overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 50% 24%, rgba(77, 142, 255, 0.16), transparent 42%),
        rgba(4, 10, 22, 0.74);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.32s ease;
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(12px) saturate(1.08);
    -webkit-backdrop-filter: blur(12px) saturate(1.08);
    cursor: progress;
}

.preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-card-wrapper {
    width: min(385px, calc(100vw - 36px));
    height: 92px;
    min-height: 92px;
    max-height: 92px;
    box-sizing: border-box;
    contain: layout paint;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(18, 29, 57, 0.98) 0%, rgba(10, 18, 38, 0.98) 100%);
    border: 1px solid rgba(126, 144, 184, 0.22);
    border-radius: 26px;
    padding: 14px 18px;
    box-shadow:
        0 30px 74px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    user-select: none;
    font-family: "Segoe UI", Arial, system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-optical-sizing: none;
    -webkit-font-smoothing: antialiased;
    z-index: 100;
    color: #f8fbff;
    transform: none !important;
    transform-origin: 50% 50%;
    animation: public-loader-fade 220ms ease-out both;
}

.loading-card-glow {
    position: absolute;
    inset: -18%;
    width: auto;
    height: auto;
    border-radius: 0;
    background: linear-gradient(100deg, transparent 18%, rgba(35, 200, 255, 0.06) 42%, rgba(0, 247, 178, 0.16) 50%, rgba(35, 200, 255, 0.06) 58%, transparent 82%);
    filter: none;
    transform: translateX(-56%) skewX(-20deg);
    animation: global-navigation-sweep 6.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    pointer-events: none;
    z-index: 1;
}

.loading-logo-container {
    position: relative;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(from 180deg, #38bdf8, #818cf8, #ec4899, #34d399, #38bdf8);
    border-radius: 22px;
    box-shadow:
        0 0 0 4px rgba(56, 189, 248, 0.06),
        0 14px 28px rgba(37, 99, 235, 0.18);
    z-index: 2;
    isolation: isolate;
    animation: global-navigation-breathe 1.9s ease-in-out infinite;
}

.loading-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    position: relative;
    z-index: 2;
}

.wave-ring {
    position: absolute;
    inset: -10px;
    border-radius: 26px;
    border: 1px solid transparent;
    background:
        linear-gradient(rgba(4, 10, 22, 0.04), rgba(4, 10, 22, 0.04)) padding-box,
        conic-gradient(from 0deg, rgba(56, 189, 248, 0.12), rgba(129, 140, 248, 0.34), rgba(0, 247, 178, 0.12), rgba(56, 189, 248, 0.12)) border-box;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 18px rgba(56, 189, 248, 0.1);
    pointer-events: none;
    animation: global-navigation-ring-pulse 1.9s ease-out infinite;
    will-change: transform, opacity;
    z-index: 1;
    opacity: 0.34;
}

.wave-ring-1 {
    animation-delay: 0s;
}

.wave-ring-2 {
    inset: -15px;
    opacity: 0.26;
    animation: global-navigation-ring-pulse 1.9s ease-out infinite;
    animation-delay: 0.28s;
}

.wave-ring-3 {
    display: none;
}

.loading-text-column {
    flex: 1;
    min-width: 0;
    z-index: 2;
    text-align: left;
    width: 100%;
}

.loading-card-title {
    color: #f8fbff;
    font-family: "Segoe UI", Arial, system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    margin: 0;
    line-height: 17px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.loading-card-desc {
    color: rgba(219, 231, 255, 0.78);
    font-family: "Segoe UI", Arial, system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 12.5px !important;
    font-weight: 650 !important;
    line-height: 19px !important;
    margin-top: 4px;
    margin-bottom: 0;
    min-height: 38px;
    max-height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@keyframes public-loader-fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes global-navigation-glow {
    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(56, 189, 248, 0.06),
            0 12px 26px rgba(37, 99, 235, 0.18);
    }

    50% {
        box-shadow:
            0 0 0 6px rgba(56, 189, 248, 0.08),
            0 15px 30px rgba(37, 99, 235, 0.22);
    }
}

@keyframes global-navigation-halo-spin {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes global-navigation-sweep {
    0% {
        transform: translateX(-68%) skewX(-20deg);
        opacity: 0;
    }

    14% {
        opacity: 1;
    }

    54% {
        opacity: 0.86;
    }

    100% {
        transform: translateX(74%) skewX(-20deg);
        opacity: 0;
    }
}


/* ==========================================================================
   2. AMBIENT BACKGROUND GLOW BLOBS
   ========================================================================== */

.ambient-glow-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -10;
    overflow: hidden;
    pointer-events: none;
}

.ambient-glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    -webkit-filter: blur(160px);
    opacity: 0.12;
    will-change: transform;
}

.blob-1 {
    width: 420px;
    height: 420px;
    top: -15%;
    right: 0%;
    background: radial-gradient(circle, rgba(56, 16, 201, 0.5) 0%, rgba(96, 99, 238, 0.2) 60%, transparent 100%);
    animation: floatBlob1 25s ease-in-out infinite;
}

.blob-2 {
    width: 380px;
    height: 380px;
    top: -5%;
    left: -5%;
    background: radial-gradient(circle, rgba(99, 82, 255, 0.4) 0%, rgba(56, 16, 201, 0.15) 50%, transparent 100%);
    animation: floatBlob2 28s ease-in-out infinite;
}

.blob-3 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 30%;
    background: radial-gradient(circle, rgba(56, 16, 201, 0.3) 0%, rgba(166, 162, 255, 0.1) 60%, transparent 100%);
    animation: floatBlob3 20s ease-in-out infinite;
}

@keyframes floatBlob1 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33% { transform: translate3d(60px, 50px, 0) scale(1.12); }
    66% { transform: translate3d(-30px, 80px, 0) scale(0.93); }
}

@keyframes floatBlob2 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33% { transform: translate3d(-70px, -40px, 0) scale(0.92); }
    66% { transform: translate3d(40px, -70px, 0) scale(1.15); }
}

@keyframes floatBlob3 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(40px, -30px, 0) scale(1.08); }
}


/* ==========================================================================
   3. GLASSMORPHISM CORE UTILITY PANELS
   ========================================================================== */

/* Light frosted glass */
.glass-panel {
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(20px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 8px 32px 0 rgba(56, 16, 201, 0.03) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.glass-panel:hover {
    transform: translateY(-5px) scale(1.01) !important;
    background: rgba(255, 255, 255, 0.6) !important;
    border-color: rgba(56, 16, 201, 0.25) !important;
    box-shadow: 0 16px 40px 0 rgba(56, 16, 201, 0.08) !important;
}

/* Dark frosted glass (for deep dark sections) */
.glass-panel-dark {
    background: rgba(13, 11, 20, 0.65) !important;
    backdrop-filter: blur(20px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.glass-panel-dark:hover {
    transform: translateY(-5px) scale(1.01) !important;
    background: rgba(13, 11, 20, 0.75) !important;
    border-color: rgba(166, 162, 255, 0.2) !important;
    box-shadow: 0 16px 40px 0 rgba(56, 16, 201, 0.18) !important;
}


/* ==========================================================================
   4. SCROLL REVEAL ANIMATION SYSTEM
   ========================================================================== */

.reveal-up {
    opacity: 0 !important;
    transform: translate3d(0, 40px, 0) !important;
    will-change: transform, opacity;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.reveal-scale {
    opacity: 0 !important;
    transform: translate3d(0, 20px, 0) scale(0.94) !important;
    will-change: transform, opacity;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.reveal-fade {
    opacity: 0 !important;
    will-change: opacity;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.reveal-visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

/* Staggered transition delays */
.delay-100 { transition-delay: 100ms !important; }
.delay-200 { transition-delay: 200ms !important; }
.delay-300 { transition-delay: 300ms !important; }
.delay-400 { transition-delay: 400ms !important; }
.delay-500 { transition-delay: 500ms !important; }


/* ==========================================================================
   5. PREMIUM HOVER ACTIONS & BUTTON GLOWS
   ========================================================================== */

/* CTA Buttons */
.btn-premium {
    background: linear-gradient(135deg, #3810C9 0%, #6063ee 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(56, 16, 201, 0.22) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-premium:hover {
    transform: scale(1.05) translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(56, 16, 201, 0.35) !important;
    filter: brightness(1.1) !important;
}

.btn-premium-outline {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(56, 16, 201, 0.2) !important;
    color: #191c1d !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-premium-outline:hover {
    transform: scale(1.05) translateY(-2px) !important;
    background: rgba(56, 16, 201, 0.06) !important;
    border-color: #3810C9 !important;
    color: #3810C9 !important;
    box-shadow: 0 8px 25px rgba(56, 16, 201, 0.08) !important;
}

/* Navigation Links */
.navbar-link {
    position: relative;
    padding-bottom: 2px;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3810C9;
    transition: width 0.3s ease;
}

.navbar-link:hover::after {
    width: 100%;
}

/* Testimonials Hover & Animation Overrides */
.hover-pause:hover {
    animation-play-state: paused !important;
}

.dark-bg .testi-card:hover {
    background: #ffffff !important;
    transform: translateY(-5px) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
}

/* ==========================================================================
   7. FINAL EXPERIENCE POLISH
   Purpose: tighten brand consistency, mobile hero rhythm, motion quality, and
   accessible reduced-motion behavior without disturbing the existing layout.
   ========================================================================== */

:root {
    --font-heading: 'Plus Jakarta Sans', 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-press: cubic-bezier(0.2, 0.8, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    font-family: var(--font-body);
    background:
        radial-gradient(circle at 16% 8%, rgba(56, 16, 201, 0.08), transparent 34rem),
        linear-gradient(180deg, #ffffff 0%, #f8f9fa 42%, #ffffff 100%);
}

h1, h2, h3 {
    text-wrap: balance;
}

p, li {
    text-wrap: pretty;
}

a, button {
    outline-offset: 4px;
}

a:focus-visible,
button:focus-visible,
.acc-header:focus-visible {
    outline: 3px solid rgba(56, 16, 201, 0.35);
}

.navbar {
    transition: background-color 420ms var(--ease-premium), border-color 420ms var(--ease-premium),
                box-shadow 420ms var(--ease-premium), transform 420ms var(--ease-premium) !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(18px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
    box-shadow: 0 10px 30px rgba(21, 18, 44, 0.08) !important;
}

.btn-premium,
.btn-premium-outline,
.navbar a[href*="signup"] {
    border-radius: 999px !important;
    transform: translateZ(0);
    transition: transform 420ms var(--ease-press), box-shadow 420ms var(--ease-premium),
                background-color 420ms var(--ease-premium), color 420ms var(--ease-premium),
                border-color 420ms var(--ease-premium) !important;
}

.btn-premium:hover,
.btn-premium-outline:hover,
.navbar a[href*="signup"]:hover {
    transform: translateY(-2px) scale(1.015) !important;
}

.btn-premium:active,
.btn-premium-outline:active,
.navbar a[href*="signup"]:active {
    transform: translateY(0) scale(0.985) !important;
}

.btn-premium {
    box-shadow: 0 14px 28px rgba(56, 16, 201, 0.24), inset 0 1px 0 rgba(255,255,255,0.24) !important;
}

.btn-premium-outline {
    background: rgba(255, 255, 255, 0.82) !important;
    backdrop-filter: none !important;
    box-shadow: inset 0 0 0 1px rgba(56, 16, 201, 0.14) !important;
}

.hero-section {
    isolation: isolate;
    overflow: visible !important;
}

.hero-section h1 {
    letter-spacing: -0.035em !important;
}

.hero-section .ambient-glow-wrapper,
.hero-section .glow-blob {
    contain: layout paint;
}

#hero-anim-root {
    filter: drop-shadow(0 28px 46px rgba(56, 16, 201, 0.11));
    overflow: visible !important;
}

#hero-anim-root .post-anim {
    border-color: rgba(56, 16, 201, 0.09) !important;
    border-radius: 24px !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94)) !important;
    box-shadow:
        0 28px 70px rgba(30, 20, 82, 0.16),
        0 1px 0 rgba(255, 255, 255, 0.88) inset !important;
    overflow: visible !important;
}

#hero-anim-root .post-anim > .rounded-2xl {
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 18px 46px rgba(30, 20, 82, 0.10) !important;
}

#hero-anim-root .post-anim > .rounded-2xl img {
    filter: saturate(1.04) contrast(1.02);
}

#hero-anim-root .post-anim > .relative.w-\[320px\].h-\[310px\] {
    overflow: visible !important;
    border-radius: 24px;
    transform: translateZ(0);
}

#hero-anim-root .post-anim > .relative.w-\[320px\].h-\[310px\] > .flex {
    gap: 12px !important;
}

@media (min-width: 769px) and (max-width: 1439px) {
    #hero-anim-root .post-anim > .relative.w-\[320px\].h-\[310px\] {
        left: 300px !important;
        width: 285px !important;
    }
}

@media (min-width: 1440px) {
    #hero-anim-root .post-anim > .relative.w-\[320px\].h-\[310px\] {
        left: 330px !important;
        width: 330px !important;
    }
}

.comment-box {
    border-left-width: 1px !important;
    border-color: rgba(56, 16, 201, 0.10) !important;
    box-shadow: 0 12px 28px rgba(20, 15, 51, 0.08) !important;
}

.comment-box[class*="border-l-"] {
    background: linear-gradient(180deg, #ffffff 0%, #f8f7ff 100%) !important;
}

.glass-panel {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-color: rgba(56, 16, 201, 0.10) !important;
    box-shadow: 0 10px 28px rgba(20, 15, 51, 0.07) !important;
}

.glass-panel:hover,
.glass-panel-dark:hover,
.dark-bg .testi-card:hover {
    transform: translateY(-3px) !important;
}

.section-eyebrow {
    letter-spacing: 0.05em;
}

.price-card.popular {
    box-shadow: 0 18px 36px rgba(56, 16, 201, 0.18) !important;
}

@media (max-width: 1024px) {
    .hero-section {
        min-height: auto !important;
        padding-top: 112px !important;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 78px;
    }

    .navbar nav {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .navbar a[href*="login"] {
        display: none !important;
    }

    .hero-section {
        overflow: hidden !important;
        padding: 96px 20px 40px !important;
    }

    .hero-section > .relative.z-10.grid {
        gap: 30px !important;
    }

    .hero-section h1 {
        font-size: clamp(38px, 11vw, 48px) !important;
        line-height: 0.98 !important;
        letter-spacing: -0.032em !important;
    }

    .hero-section p {
        font-size: 16px !important;
        line-height: 1.65 !important;
    }

    .hero-section .animate-fade-up {
        animation-duration: 720ms !important;
    }

    #hero-anim-root {
        width: min(100%, 350px) !important;
        max-width: 350px !important;
        height: 520px !important;
        max-height: 64vh !important;
        min-height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        align-items: flex-start !important;
        justify-content: center !important;
        transform: scale(0.94);
        transform-origin: top center;
    }

    #hero-anim-root > .flex {
        width: 320px !important;
        height: 520px !important;
        position: relative !important;
        gap: 0 !important;
    }

    #hero-anim-root .post-anim {
        position: absolute !important;
        inset: 0 auto auto 0 !important;
        width: 320px !important;
    }

    #hero-anim-root .post-anim > .rounded-2xl {
        max-height: 500px;
        overflow: hidden;
    }

    #hero-anim-root .relative.w-\[320px\].h-\[310px\] {
        position: absolute !important;
        left: 18px !important;
        right: 18px !important;
        top: 256px !important;
        width: auto !important;
        height: 240px !important;
        margin-top: 0 !important;
        z-index: 30 !important;
        overflow: hidden !important;
    }

    #hero-anim-root .comment-box {
        transform: translateZ(0) scale(0.96);
        transform-origin: top center;
    }

    .hero-feature-pills {
        display: flex !important;
        max-width: 100%;
    }

    .hero-section .flex.flex-wrap.justify-start.gap-3 {
        gap: 10px !important;
    }

    .hero-section .btn-premium,
    .hero-section .btn-premium-outline {
        padding: 13px 18px !important;
        font-size: 14px !important;
    }

    .hero-trust-row {
        margin-bottom: 0 !important;
    }

    .section,
    .pricing-section,
    .dashboard-section,
    .testimonials-section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
}

@media (max-width: 420px) {
    .hero-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    #hero-anim-root {
        transform: scale(0.90);
        margin-bottom: -36px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }

    .reveal-up,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-fade {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =========================================
   Website polish pass: motion, footer, demo UI
   ========================================= */
:root {
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-state: cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Plus Jakarta Sans', 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select,
#boostingr-dash,
#hero-anim-root :not(i):not(.fa):not(.fa-solid):not(.fa-regular):not(.fa-brands):not(.material-symbols-outlined) {
    font-family: var(--font-body) !important;
}

[class*="font-mono"][class*="uppercase"] {
    font-family: var(--font-body) !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

section span.inline-flex[class*="font-mono"][class*="uppercase"],
section span.inline-flex[class*="tracking-wider"],
section span.inline-flex[class*="tracking-widest"] {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-family: var(--font-heading) !important;
    font-size: 0.88rem !important;
    font-weight: 850 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    gap: 0 !important;
}

section span.inline-flex[class*="font-mono"][class*="uppercase"] > span,
section span.inline-flex[class*="tracking-wider"] > span,
section span.inline-flex[class*="tracking-widest"] > span,
section span.inline-flex[class*="font-mono"][class*="uppercase"] > i,
section span.inline-flex[class*="tracking-wider"] > i,
section span.inline-flex[class*="tracking-widest"] > i {
    display: none !important;
}

/* Kill the repeated AI-pill look while keeping section context readable. */
section span.inline-flex.rounded-full.font-mono.font-bold.tracking-wider.uppercase,
.hero-section .text-left > .inline-flex.items-center.gap-2 {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-family: var(--font-heading) !important;
    font-size: 0.86rem !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
    text-transform: none !important;
    gap: 0 !important;
}

section span.inline-flex.rounded-full.font-mono.font-bold.tracking-wider.uppercase > span,
.hero-section .text-left > .inline-flex.items-center.gap-2 > span {
    display: none !important;
}

.hero-section .text-left > .inline-flex.items-center.gap-2 {
    color: #3810C9 !important;
}

.dark-bg span.inline-flex.rounded-full.font-mono.font-bold.tracking-wider.uppercase,
#automate span.inline-flex.rounded-full.font-mono.font-bold.tracking-wider.uppercase,
#about span.inline-flex.rounded-full.font-mono.font-bold.tracking-wider.uppercase {
    color: rgba(255,255,255,0.84) !important;
}

/* Smoother hero carousel: JS controls active state, CSS handles the weight. */
#hero-anim-root .post-anim,
#hero-anim-root .pop-1,
#hero-anim-root .pop-2,
#hero-anim-root .pop-3,
#hero-anim-root .pop-4,
#hero-anim-root .danger-overlay,
#hero-anim-root .danger-label,
#hero-anim-root .delete-badge,
#hero-anim-root .dot-anim {
    animation: none !important;
}

#hero-anim-root .post-anim {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
    transform: translate3d(16px, 6px, 0) scale(0.985);
    filter: saturate(0.92);
    transition:
        opacity 520ms var(--ease-state),
        transform 520ms var(--ease-state),
        filter 520ms var(--ease-state),
        visibility 0s linear 520ms;
    will-change: auto;
}

#hero-anim-root .post-anim.hero-post-active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    z-index: 8;
    transform: translate3d(0, 0, 0) scale(1);
    filter: saturate(1);
    transition-delay: 0s;
}

#hero-anim-root .post-anim.hero-post-exiting {
    opacity: 0 !important;
    visibility: visible !important;
    z-index: 7;
    transform: translate3d(-18px, 2px, 0) scale(0.985);
    transition-delay: 0s;
}

#hero-anim-root .comment-box {
    border-left-width: 1px !important;
    border-color: rgba(56, 16, 201, 0.12) !important;
    border-radius: 18px !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,248,255,0.96)),
        #ffffff !important;
    box-shadow:
        0 18px 42px rgba(43, 24, 130, 0.12),
        0 1px 0 rgba(255,255,255,0.85) inset !important;
    transform: translate3d(0, 10px, 0) scale(0.992);
    transform-origin: 50% 22px;
    will-change: opacity, transform;
    transition:
        opacity 520ms var(--ease-state),
        transform 520ms var(--ease-state),
        box-shadow 520ms var(--ease-state),
        border-color 520ms var(--ease-state) !important;
}

#hero-anim-root .post-anim:not(.hero-post-active) .comment-box,
#hero-anim-root .post-anim:not(.hero-post-active) .danger-overlay,
#hero-anim-root .post-anim:not(.hero-post-active) .delete-badge {
    opacity: 0 !important;
    transform: translate3d(0, 8px, 0) scale(0.992) !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

#hero-anim-root .hero-post-active .comment-box {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translate3d(0, 10px, 0) scale(0.992) !important;
    pointer-events: none !important;
}

#hero-anim-root .hero-post-active .comment-box.comment-step-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
    pointer-events: auto !important;
}

#hero-anim-root .post-anim.hero-post-active .comment-box.comment-step-visible {
    transform: translate3d(0, 0, 0) scale(1) !important;
}

#hero-anim-root .comment-box.pop-2 {
    position: relative !important;
    width: calc(100% - 44px) !important;
    margin-left: 44px !important;
    border-left-width: 2px !important;
    border-left-color: rgba(56, 16, 201, 0.36) !important;
    border-color: rgba(56, 16, 201, 0.14) !important;
    background:
        linear-gradient(135deg, rgba(56, 16, 201, 0.055), rgba(255, 255, 255, 0.98)),
        #ffffff !important;
    box-shadow: 0 14px 34px rgba(56, 16, 201, 0.12) !important;
}

#hero-anim-root .comment-box.pop-2::before {
    content: "";
    position: absolute;
    left: -31px;
    top: 22px;
    width: 26px;
    height: 26px;
    border-left: 2px solid rgba(56, 16, 201, 0.22);
    border-bottom: 2px solid rgba(56, 16, 201, 0.22);
    border-bottom-left-radius: 15px;
    pointer-events: none;
}

#hero-anim-root .comment-box.pop-2::after {
    content: "Reply";
    position: absolute;
    left: 12px;
    top: -10px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #f4f1ff;
    color: #3810C9;
    font-size: 9px;
    font-weight: 850;
    line-height: 1.2;
    box-shadow: 0 4px 12px rgba(56, 16, 201, 0.08);
}

#hero-anim-root .comment-box.pop-2 .w-7.h-7 {
    width: 24px !important;
    height: 24px !important;
}

#hero-anim-root .comment-box.pop-2 p.text-\[14px\].font-bold {
    font-size: 13px !important;
}

#hero-anim-root .comment-box.pop-2 p.text-\[14px\].text-gray-700 {
    font-size: 13px !important;
    line-height: 1.38 !important;
}

#hero-anim-root .hero-post-active .pop-1,
#hero-anim-root .hero-post-active .pop-2,
#hero-anim-root .hero-post-active .pop-3,
#hero-anim-root .hero-post-active .pop-4 {
    transition-delay: 0ms !important;
}

#hero-anim-root .hero-post-active .danger-overlay {
    opacity: 0 !important;
    border-color: rgba(239, 68, 68, 0.28) !important;
    background: rgba(239, 68, 68, 0.055) !important;
    transition: opacity 520ms var(--ease-state), background 520ms var(--ease-state);
}

#hero-anim-root .hero-post-active .danger-label,
#hero-anim-root .hero-post-active .delete-badge {
    opacity: 0 !important;
    transform: scale(0.94) !important;
    transition: opacity 440ms var(--ease-state), transform 440ms var(--ease-state);
}

#hero-anim-root .hero-post-active .danger-overlay.danger-step-visible,
#hero-anim-root .hero-post-active .danger-label.danger-step-visible,
#hero-anim-root .hero-post-active .delete-badge.danger-step-visible {
    opacity: 1 !important;
    transform: scale(1) !important;
}

#hero-anim-root .dot-anim {
    width: 8px !important;
    height: 8px !important;
    border-radius: 999px !important;
    background: rgba(56, 16, 201, 0.16) !important;
    transition:
        width 260ms var(--ease-out-quint),
        background-color 260ms var(--ease-out-quint),
        transform 160ms var(--ease-out-quint) !important;
}

#hero-anim-root .dot-anim:hover {
    transform: scale(1.18) !important;
}

#hero-anim-root .dot-anim.is-active {
    width: 30px !important;
    background: #3810C9 !important;
}

/* Footer: remove the oversized CTA-card treatment and make the remaining content tighter. */
.site-footer {
    padding-top: 54px !important;
    padding-bottom: 24px !important;
}

.site-footer .footer-top {
    margin-bottom: 30px !important;
}

.site-footer .footer-brand-col {
    border-radius: 18px !important;
    transition: transform 320ms var(--ease-out-quint), background-color 320ms var(--ease-out-quint),
                border-color 320ms var(--ease-out-quint), box-shadow 320ms var(--ease-out-quint);
}

.footer-watermark {
    opacity: 0.72;
}

.demo-modal-lock {
    overflow: hidden;
}

.demo-coming-soon-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 260ms var(--ease-out-quint), visibility 260ms var(--ease-out-quint);
}

.demo-coming-soon-modal.is-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.demo-coming-soon-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 35%, rgba(56, 16, 201, 0.22), transparent 34%),
        rgba(18, 14, 35, 0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.demo-coming-soon-card {
    position: relative;
    width: min(100%, 360px);
    border: 1px solid rgba(56, 16, 201, 0.16);
    border-radius: 18px;
    background:
        radial-gradient(circle at 24% 0%, rgba(56, 16, 201, 0.14), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #f8f6ff 100%);
    box-shadow: 0 28px 80px rgba(27, 13, 90, 0.24);
    padding: 26px 24px 22px;
    text-align: center;
    transform: translateY(22px) scale(0.94);
    opacity: 0;
    transition:
        transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
        opacity 240ms var(--ease-out-quint);
}

.demo-coming-soon-modal.is-open .demo-coming-soon-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.demo-coming-soon-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    margin: 0 auto 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3810C9;
    background: rgba(56, 16, 201, 0.10);
    box-shadow: inset 0 0 0 1px rgba(56, 16, 201, 0.12);
    animation: demoIconPulse 1.6s ease-in-out infinite;
}

.demo-coming-soon-icon .material-symbols-outlined {
    font-size: 30px;
    font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 32;
}

.demo-coming-soon-card h2 {
    color: #151927;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 8px;
}

.demo-coming-soon-card p {
    color: #657188;
    font-size: 14px;
    line-height: 1.55;
    margin: 0 auto 18px;
    max-width: 280px;
}

.demo-coming-soon-ok {
    min-width: 116px;
    border: 0;
    border-radius: 999px;
    background: #3810C9;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 22px;
    box-shadow: 0 14px 30px rgba(56, 16, 201, 0.25);
    transition: transform 180ms var(--ease-out-quint), box-shadow 180ms var(--ease-out-quint), background-color 180ms var(--ease-out-quint);
}

.demo-coming-soon-ok:hover {
    transform: translateY(-2px);
    background: #2f0db1;
    box-shadow: 0 18px 36px rgba(56, 16, 201, 0.30);
}

.demo-coming-soon-ok:focus-visible {
    outline: 3px solid rgba(56, 16, 201, 0.22);
    outline-offset: 3px;
}

@keyframes demoIconPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: inset 0 0 0 1px rgba(56, 16, 201, 0.12), 0 0 0 0 rgba(56, 16, 201, 0.16);
    }
    50% {
        transform: translateY(-2px) scale(1.04);
        box-shadow: inset 0 0 0 1px rgba(56, 16, 201, 0.16), 0 0 0 10px rgba(56, 16, 201, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .demo-coming-soon-card,
    .demo-coming-soon-modal,
    .demo-coming-soon-ok {
        transition: none !important;
    }

    .demo-coming-soon-icon {
        animation: none !important;
    }
}

.cta-social-proof {
    display: none !important;
}

.hero-trust-row {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-feature-pills,
.hero-trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100%;
    gap: 10px !important;
}

.hero-feature-pills {
    display: grid !important;
    align-items: stretch;
}

.hero-feature-pills > div {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    cursor: default;
    min-width: 0;
    width: 100%;
    min-height: 46px;
    transform: translate3d(0, 0, 0);
    transition:
        transform 220ms var(--ease-out-quint),
        border-color 220ms var(--ease-out-quint),
        box-shadow 220ms var(--ease-out-quint),
        background-color 220ms var(--ease-out-quint);
}

.hero-trust-chip {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    width: 100%;
    min-height: 46px;
    padding: 7px 10px;
    color: #172033;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
    white-space: normal;
    border: 1px solid rgba(56, 16, 201, 0.16);
    border-radius: 11px;
    background:
        radial-gradient(circle at 14% 0%, rgba(56, 16, 201, 0.12), transparent 46%),
        linear-gradient(180deg, #ffffff 0%, #f7f4ff 100%);
    box-shadow: 0 6px 16px rgba(56, 16, 201, 0.08);
    cursor: default;
    transform: translate3d(0, 0, 0);
    transition:
        transform 220ms var(--ease-out-quint),
        border-color 220ms var(--ease-out-quint),
        box-shadow 220ms var(--ease-out-quint),
        background-color 220ms var(--ease-out-quint);
}

.hero-trust-chip > span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

.hero-trust-copy {
    min-width: 0;
}

.hero-trust-copy > div {
    color: #172033;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.05;
    white-space: nowrap;
}

.hero-trust-copy > span {
    display: block;
    margin-top: 2px;
    color: #8b9ab0;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.hero-feature-pills > div::before,
.hero-trust-chip::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: radial-gradient(circle at var(--pill-x, 28%) var(--pill-y, 0%), rgba(56, 16, 201, 0.14), transparent 48%);
    opacity: 0;
    transition: opacity 220ms var(--ease-out-quint);
}

    .hero-feature-pills > div:hover,
.hero-trust-chip:hover {
    transform: translate3d(0, -3px, 0);
    border-color: rgba(56, 16, 201, 0.22) !important;
    box-shadow: 0 12px 26px rgba(31, 16, 110, 0.11) !important;
}

.hero-feature-pills > div:hover::before,
.hero-trust-chip:hover::before {
    opacity: 1;
}

.hero-feature-pills > div > div:first-child,
.hero-trust-icon {
    transition:
        transform 220ms var(--ease-out-quint),
        background-color 220ms var(--ease-out-quint),
        color 220ms var(--ease-out-quint);
}

.hero-feature-pills > div:hover > div:first-child,
.hero-trust-chip:hover .hero-trust-icon {
    transform: scale(1.08) rotate(-2deg);
    background: #3810C9 !important;
    color: #ffffff !important;
}

.hero-trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: rgba(56, 16, 201, 0.10);
    color: #3810C9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.hero-trust-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-trust-icon svg path:first-child:last-child {
    fill: currentColor;
    stroke: none;
}

.hero-trust-meta-icon {
    background: #ffffff;
    border: 1px solid rgba(56, 16, 201, 0.10);
}

.hero-trust-meta-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.hero-trust-chip:hover .hero-trust-meta-icon {
    background: #ffffff !important;
}

@media (max-width: 560px) {
    .hero-feature-pills,
    .hero-trust-row {
        grid-template-columns: 1fr !important;
    }
}

.site-footer .footer-brand-col:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 24px 58px rgba(13, 0, 85, 0.24);
}

.site-footer .logo {
    display: inline-flex;
    transform-origin: left center;
}

.footer-logo-img {
    transition: transform 360ms var(--ease-out-quint), filter 360ms var(--ease-out-quint);
}

.site-footer .logo:hover .footer-logo-img {
    transform: translateY(-2px) scale(1.045) rotate(-1deg);
    filter: drop-shadow(0 12px 22px rgba(255,255,255,0.16));
}

.btn-premium,
.btn-premium-outline,
.pricing-card,
.price-card,
.feature-accordion-item,
.faq-tab,
.acc-header,
.social-links a,
.footer-contact-item,
.footer-links-col a {
    transition:
        transform 220ms var(--ease-out-quint),
        box-shadow 220ms var(--ease-out-quint),
        background-color 220ms var(--ease-out-quint),
        border-color 220ms var(--ease-out-quint),
        color 220ms var(--ease-out-quint) !important;
}

.btn-premium:hover,
.btn-premium-outline:hover {
    transform: translateY(-2px) scale(1.015);
}

.price-card:hover,
.feature-accordion-item:hover,
.acc-header:hover {
    transform: translateY(-3px);
}

.footer-contact-item:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.22);
}

.section-mouse-glow {
    will-change: transform, opacity !important;
}

.scroll-thread {
    display: none !important;
}

.journey-marker {
    display: none !important;
}

.journey-section {
    position: relative;
}

/* Local icon fallbacks for the public site.
   Production CSP intentionally blocks third-party icon CSS, so these keep the
   copied marketing page visually complete without opening another CDN. */
.fa-solid,
.fa-regular,
.fa-brands {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    line-height: 1;
    speak: never;
}

.fa-solid::before,
.fa-regular::before {
    display: inline-block;
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "liga";
    font-variation-settings: "FILL" 1, "wght" 700, "GRAD" 0, "opsz" 24;
}

.fa-brands::before {
    display: inline-block;
    font-family: inherit;
    font-weight: 900;
    line-height: 1;
}

.material-symbols-outlined[data-svg-fallback="true"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.material-symbols-outlined[data-svg-fallback="true"] svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    flex: 0 0 auto;
}

.fa-solid[data-svg-fallback="true"]::before,
.fa-regular[data-svg-fallback="true"]::before {
    content: none !important;
}

.fa-solid[data-svg-fallback="true"] svg,
.fa-regular[data-svg-fallback="true"] svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    flex: 0 0 auto;
}

.fa-star::before { content: "star"; }
.fa-circle-check::before { content: "check_circle"; }
.fa-ellipsis::before { content: "more_horiz"; }
.fa-heart::before { content: "favorite"; }
.fa-comment::before,
.fa-comments::before { content: "chat_bubble"; }
.fa-paper-plane::before { content: "send"; }
.fa-bookmark::before { content: "bookmark"; }
.fa-shield-halved::before { content: "shield"; }
.fa-instagram::before { content: "◎"; }
.fa-check::before { content: "check"; }
.fa-sliders::before { content: "tune"; }
.fa-user-check::before { content: "how_to_reg"; }
.fa-wand-magic-sparkles::before { content: "auto_fix_high"; }
.fa-graduation-cap::before { content: "school"; }
.fa-brain::before { content: "psychology"; }
.fa-telegram::before { content: "send"; }
.fa-house::before { content: "home"; }
.fa-bell::before { content: "notifications"; }
.fa-circle-question::before { content: "help"; }
.fa-robot::before { content: "smart_toy"; }
.fa-rotate-right::before { content: "refresh"; }
.fa-quote-right::before { content: "format_quote"; }
.fa-chevron-down::before { content: "expand_more"; }
.fa-rocket::before { content: "rocket_launch"; }
.fa-users::before { content: "groups"; }
.fa-bolt::before { content: "bolt"; }
.fa-arrow-right::before { content: "arrow_forward"; }
.fa-linkedin-in::before { content: "in"; font-size: 0.78em; font-weight: 900; letter-spacing: -0.04em; }
.fa-twitter::before { content: "X"; font-size: 0.82em; font-weight: 900; }
.fa-youtube::before { content: "▶"; font-size: 0.78em; }
.fa-location-dot::before { content: "location_on"; }
.fa-envelope::before { content: "mail"; }
.fa-phone::before { content: "call"; }

.fa-spin {
    animation: localFaSpin 0.9s linear infinite;
}

@keyframes localFaSpin {
    to { transform: rotate(360deg); }
}

.instagram-connect-logo {
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex: 0 0 auto;
    color: #e1306c;
    background-color: currentColor;
    filter: drop-shadow(0 7px 14px rgba(225, 48, 108, 0.18));
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M7.75 2h8.5A5.76 5.76 0 0 1 22 7.75v8.5A5.76 5.76 0 0 1 16.25 22h-8.5A5.76 5.76 0 0 1 2 16.25v-8.5A5.76 5.76 0 0 1 7.75 2Zm0 2.05a3.7 3.7 0 0 0-3.7 3.7v8.5a3.7 3.7 0 0 0 3.7 3.7h8.5a3.7 3.7 0 0 0 3.7-3.7v-8.5a3.7 3.7 0 0 0-3.7-3.7h-8.5ZM12 7.25a4.75 4.75 0 1 1 0 9.5 4.75 4.75 0 0 1 0-9.5Zm0 2.05a2.7 2.7 0 1 0 0 5.4 2.7 2.7 0 0 0 0-5.4Zm5.1-2.4a1.05 1.05 0 1 1 0 2.1 1.05 1.05 0 0 1 0-2.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M7.75 2h8.5A5.76 5.76 0 0 1 22 7.75v8.5A5.76 5.76 0 0 1 16.25 22h-8.5A5.76 5.76 0 0 1 2 16.25v-8.5A5.76 5.76 0 0 1 7.75 2Zm0 2.05a3.7 3.7 0 0 0-3.7 3.7v8.5a3.7 3.7 0 0 0 3.7 3.7h8.5a3.7 3.7 0 0 0 3.7-3.7v-8.5a3.7 3.7 0 0 0-3.7-3.7h-8.5ZM12 7.25a4.75 4.75 0 1 1 0 9.5 4.75 4.75 0 0 1 0-9.5Zm0 2.05a2.7 2.7 0 1 0 0 5.4 2.7 2.7 0 0 0 0-5.4Zm5.1-2.4a1.05 1.05 0 1 1 0 2.1 1.05 1.05 0 0 1 0-2.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Footer polish for the integrated public site */
.site-footer {
    padding: clamp(42px, 5vw, 56px) 0 22px !important;
}

.site-footer .footer-top {
    position: relative;
    grid-template-columns: minmax(290px, 0.95fr) minmax(150px, 0.72fr) minmax(160px, 0.72fr) minmax(270px, 0.9fr) !important;
    gap: clamp(26px, 4vw, 54px) !important;
    margin-bottom: 22px !important;
}

.site-footer .footer-brand-col {
    max-width: 390px !important;
    padding: 22px !important;
}

.site-footer .footer-watermark {
    bottom: -0.26em !important;
    color: rgba(255, 255, 255, 0.045) !important;
    opacity: 0.72 !important;
}

.site-footer .footer-desc {
    margin-top: 20px !important;
    font-size: 0.98rem !important;
    line-height: 1.5 !important;
}

.site-footer .footer-proof-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px !important;
    width: 100%;
    max-width: 360px;
}

.site-footer .footer-proof-row span {
    white-space: nowrap !important;
    min-width: 0;
    padding-inline: 10px !important;
    text-align: center;
    font-size: 0.72rem !important;
}

.site-footer .social-links {
    gap: 10px !important;
    margin-top: 20px !important;
}

.site-footer .social-links a {
    display: grid !important;
    place-items: center !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 0.98rem !important;
    font-weight: 900 !important;
    color: rgba(255, 255, 255, 0.86) !important;
    line-height: 1 !important;
}

.site-footer .social-links a i {
    display: grid !important;
    place-items: center !important;
    width: 20px;
    height: 20px;
    line-height: 1 !important;
}

.site-footer .social-links .fa-brands::before {
    display: grid !important;
    place-items: center !important;
    font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif !important;
    line-height: 1 !important;
}

.site-footer .social-links .fa-linkedin-in::before {
    content: "in" !important;
    font-size: 0.95rem !important;
    letter-spacing: -0.06em !important;
    transform: translateY(-0.5px);
}

.site-footer .social-links .fa-twitter::before {
    content: "" !important;
    width: 18px;
    height: 18px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.16 5.66c-.73.32-1.5.53-2.31.63.84-.5 1.47-1.29 1.77-2.23-.78.46-1.64.8-2.56.98A4.02 4.02 0 0 0 12.1 8.8c0 .32.04.63.1.93A11.42 11.42 0 0 1 3.9 5.5a4.03 4.03 0 0 0 1.25 5.38c-.64-.02-1.24-.2-1.76-.49v.05a4.03 4.03 0 0 0 3.23 3.95c-.34.09-.69.14-1.06.14-.26 0-.51-.02-.76-.07a4.03 4.03 0 0 0 3.76 2.8 8.08 8.08 0 0 1-5 1.72c-.33 0-.65-.02-.96-.06a11.39 11.39 0 0 0 6.18 1.82c7.42 0 11.48-6.15 11.48-11.48v-.52c.79-.57 1.47-1.28 2.01-2.09z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.16 5.66c-.73.32-1.5.53-2.31.63.84-.5 1.47-1.29 1.77-2.23-.78.46-1.64.8-2.56.98A4.02 4.02 0 0 0 12.1 8.8c0 .32.04.63.1.93A11.42 11.42 0 0 1 3.9 5.5a4.03 4.03 0 0 0 1.25 5.38c-.64-.02-1.24-.2-1.76-.49v.05a4.03 4.03 0 0 0 3.23 3.95c-.34.09-.69.14-1.06.14-.26 0-.51-.02-.76-.07a4.03 4.03 0 0 0 3.76 2.8 8.08 8.08 0 0 1-5 1.72c-.33 0-.65-.02-.96-.06a11.39 11.39 0 0 0 6.18 1.82c7.42 0 11.48-6.15 11.48-11.48v-.52c.79-.57 1.47-1.28 2.01-2.09z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-footer .social-links .fa-instagram::before {
    content: "" !important;
    width: 18px;
    height: 18px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M7.75 2h8.5A5.76 5.76 0 0 1 22 7.75v8.5A5.76 5.76 0 0 1 16.25 22h-8.5A5.76 5.76 0 0 1 2 16.25v-8.5A5.76 5.76 0 0 1 7.75 2Zm0 2A3.75 3.75 0 0 0 4 7.75v8.5A3.75 3.75 0 0 0 7.75 20h8.5A3.75 3.75 0 0 0 20 16.25v-8.5A3.75 3.75 0 0 0 16.25 4h-8.5ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm5.25-2.2a1.05 1.05 0 1 1 0 2.1 1.05 1.05 0 0 1 0-2.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M7.75 2h8.5A5.76 5.76 0 0 1 22 7.75v8.5A5.76 5.76 0 0 1 16.25 22h-8.5A5.76 5.76 0 0 1 2 16.25v-8.5A5.76 5.76 0 0 1 7.75 2Zm0 2A3.75 3.75 0 0 0 4 7.75v8.5A3.75 3.75 0 0 0 7.75 20h8.5A3.75 3.75 0 0 0 20 16.25v-8.5A3.75 3.75 0 0 0 16.25 4h-8.5ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm5.25-2.2a1.05 1.05 0 1 1 0 2.1 1.05 1.05 0 0 1 0-2.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-footer .social-links .fa-youtube::before {
    content: "" !important;
    width: 18px;
    height: 18px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.58 7.19a2.73 2.73 0 0 0-1.92-1.93C17.96 4.8 12 4.8 12 4.8s-5.96 0-7.66.46a2.73 2.73 0 0 0-1.92 1.93A28.4 28.4 0 0 0 2 12a28.4 28.4 0 0 0 .42 4.81 2.73 2.73 0 0 0 1.92 1.93c1.7.46 7.66.46 7.66.46s5.96 0 7.66-.46a2.73 2.73 0 0 0 1.92-1.93A28.4 28.4 0 0 0 22 12a28.4 28.4 0 0 0-.42-4.81ZM10 15.2V8.8l5.4 3.2L10 15.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.58 7.19a2.73 2.73 0 0 0-1.92-1.93C17.96 4.8 12 4.8 12 4.8s-5.96 0-7.66.46a2.73 2.73 0 0 0-1.92 1.93A28.4 28.4 0 0 0 2 12a28.4 28.4 0 0 0 .42 4.81 2.73 2.73 0 0 0 1.92 1.93c1.7.46 7.66.46 7.66.46s5.96 0 7.66-.46a2.73 2.73 0 0 0 1.92-1.93A28.4 28.4 0 0 0 22 12a28.4 28.4 0 0 0-.42-4.81ZM10 15.2V8.8l5.4 3.2L10 15.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-footer .social-links .fa-twitter::before {
    content: "X" !important;
    width: auto !important;
    height: auto !important;
    background-color: transparent !important;
    -webkit-mask: none !important;
    mask: none !important;
    font-size: 0.96rem !important;
    font-weight: 950 !important;
    letter-spacing: -0.04em !important;
}

.site-footer .footer-contact-item .fa-location-dot::before,
.site-footer .footer-contact-item .fa-envelope::before {
    content: "" !important;
    width: 18px;
    height: 18px;
    background-color: currentColor;
}

.site-footer .footer-contact-item .fa-location-dot::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.75A2.75 2.75 0 1 1 12 6.25a2.75 2.75 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.75A2.75 2.75 0 1 1 12 6.25a2.75 2.75 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-footer .footer-contact-item .fa-envelope::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 5h15A2.5 2.5 0 0 1 22 7.5v9A2.5 2.5 0 0 1 19.5 19h-15A2.5 2.5 0 0 1 2 16.5v-9A2.5 2.5 0 0 1 4.5 5Zm.25 2 7.25 5.1L19.25 7H4.75Zm15.25 2.1-7.43 5.22a1 1 0 0 1-1.14 0L4 9.1v7.4c0 .28.22.5.5.5h15a.5.5 0 0 0 .5-.5V9.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 5h15A2.5 2.5 0 0 1 22 7.5v9A2.5 2.5 0 0 1 19.5 19h-15A2.5 2.5 0 0 1 2 16.5v-9A2.5 2.5 0 0 1 4.5 5Zm.25 2 7.25 5.1L19.25 7H4.75Zm15.25 2.1-7.43 5.22a1 1 0 0 1-1.14 0L4 9.1v7.4c0 .28.22.5.5.5h15a.5.5 0 0 0 .5-.5V9.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-footer .footer-links-col ul {
    gap: 11px !important;
}

.site-footer .footer-links-col {
    position: relative;
    min-height: 184px;
    padding-bottom: 26px;
}

.site-footer .footer-links-col::after {
    content: "";
    position: absolute;
    left: 0;
    right: 18%;
    bottom: 0;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(196, 192, 255, 0.12), transparent);
}

.site-footer .footer-links-col::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(196, 192, 255, 0.78);
    box-shadow: 0 0 18px rgba(196, 192, 255, 0.28);
}

.site-footer .footer-support-strip {
    --footer-support-gap: clamp(26px, 4vw, 54px);
    --footer-support-fluid: calc(100% - (var(--footer-support-gap) * 3));
    position: absolute;
    left: calc((var(--footer-support-fluid) * 0.2887538) + var(--footer-support-gap));
    bottom: 0;
    width: max-content;
    max-width: min(520px, calc((var(--footer-support-fluid) * 0.4376899) + var(--footer-support-gap)));
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-footer .footer-support-kicker {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.site-footer .footer-support-logos {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.site-footer .footer-support-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
    cursor: default;
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform 220ms var(--ease-out-quint),
        background-color 220ms var(--ease-out-quint),
        border-color 220ms var(--ease-out-quint),
        color 220ms var(--ease-out-quint);
}

.site-footer .footer-support-logo::before,
.site-footer .footer-support-logo::after {
    content: none !important;
}

.site-footer .footer-support-logo:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.17);
    color: #ffffff;
}

.footer-support-logo-img {
    display: block;
    width: auto;
    height: 20px;
    max-width: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.footer-support-google .footer-support-logo-img {
    width: 24px;
    height: 20px;
}

.footer-support-aws {
    padding-inline: 12px;
}

.footer-support-aws .footer-support-logo-img {
    width: 38px;
    height: 14px;
}

.footer-contact-item {
    min-height: 58px;
}

.site-footer .footer-bottom {
    padding-top: 18px !important;
}

@media (max-width: 1100px) {
    .site-footer .footer-top {
        grid-template-columns: 1fr 1fr !important;
    }

    .site-footer .footer-support-strip {
        position: static;
        max-width: none;
        width: auto;
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 720px) {
    .site-footer {
        padding-top: 34px !important;
    }

    .site-footer .footer-top {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        margin-bottom: 22px !important;
    }

    .site-footer .footer-brand-col {
        max-width: none !important;
    }

    .site-footer .footer-proof-row {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-support-strip {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 18px;
        padding: 14px;
    }

    .site-footer .footer-support-logos {
        width: 100%;
    }

    .site-footer .footer-support-logo {
        flex: 1 1 180px;
        justify-content: center;
    }

    .footer-support-google .footer-support-logo-img {
        width: 24px;
    }

    .footer-support-aws .footer-support-logo-img {
        width: 38px;
    }
}

.journey-marker {
    --marker-offset: clamp(22px, calc((100vw - 1240px) / 2 - 58px), 108px);
    position: absolute;
    top: 50%;
    width: 32px;
    height: min(62%, 520px);
    min-height: 220px;
    transform: translate3d(0, -50%, 0);
    z-index: 2;
    pointer-events: none;
    opacity: 0.42;
    transition:
        opacity 260ms var(--ease-out-quint),
        transform 260ms var(--ease-out-quint);
}

.journey-section-left > .journey-marker {
    left: var(--marker-offset);
}

.journey-section-right > .journey-marker {
    right: var(--marker-offset);
}

.journey-marker__rail,
.journey-marker__rail-fill {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 999px;
    transform: translateX(-50%);
}

.journey-marker__rail {
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(56, 16, 201, 0.10) 18%,
            rgba(56, 16, 201, 0.14) 50%,
            rgba(56, 16, 201, 0.10) 82%,
            transparent
        );
}

.journey-marker__rail-fill {
    bottom: auto;
    height: calc(var(--journey-progress, 0) * 100%);
    background: linear-gradient(to bottom, #9d8cff, #3810C9 58%, #17006a);
    box-shadow: 0 0 18px rgba(56, 16, 201, 0.20);
    transition: height 140ms linear;
}

.journey-marker__dot {
    position: absolute;
    left: 50%;
    top: calc(var(--journey-progress, 0) * 100%);
    width: 14px;
    height: 14px;
    border-radius: 999px;
    transform: translate3d(-50%, -50%, 0) scale(0.9);
    background:
        radial-gradient(circle at 36% 34%, #ffffff 0 18%, #a897ff 20% 38%, #3810C9 40% 100%);
    border: 2px solid rgba(255, 255, 255, 0.94);
    box-shadow:
        0 0 0 8px rgba(56, 16, 201, 0.075),
        0 14px 34px rgba(31, 16, 110, 0.14);
    transition:
        top 140ms linear,
        transform 260ms var(--ease-out-quint),
        box-shadow 260ms var(--ease-out-quint);
}

.journey-marker__dot::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    border: 1px solid rgba(56, 16, 201, 0.16);
    opacity: 0;
    transform: scale(0.76);
    transition:
        opacity 260ms var(--ease-out-quint),
        transform 260ms var(--ease-out-quint);
}

.journey-active > .journey-marker,
.journey-passed > .journey-marker {
    opacity: 1;
}

.journey-active > .journey-marker {
    transform: translate3d(0, -50%, 0) scale(1.02);
}

.journey-active .journey-marker__dot {
    transform: translate3d(-50%, -50%, 0) scale(1.16);
    box-shadow:
        0 0 0 12px rgba(56, 16, 201, 0.12),
        0 0 30px rgba(56, 16, 201, 0.40),
        0 18px 44px rgba(31, 16, 110, 0.20);
}

.journey-active .journey-marker__dot::before {
    opacity: 1;
    transform: scale(1.28);
}

.journey-passed .journey-marker__rail-fill {
    height: 100%;
}

.journey-passed .journey-marker__dot {
    top: 100%;
}

#automate .journey-marker__rail,
#about .journey-marker__rail,
#footer .journey-marker__rail {
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255, 255, 255, 0.14) 18%,
            rgba(255, 255, 255, 0.24) 50%,
            rgba(255, 255, 255, 0.14) 82%,
            transparent
        );
}

#automate .journey-marker__rail-fill,
#about .journey-marker__rail-fill,
#footer .journey-marker__rail-fill {
    background: linear-gradient(to bottom, rgba(255,255,255,0.88), #b7a9ff 48%, #ffffff);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.22);
}

@media (max-width: 1340px) {
    .journey-marker {
        --marker-offset: 18px;
        opacity: 0.32;
    }
}

@media (max-width: 1100px) {
    .journey-marker {
        display: none;
    }
}

.reveal-visible,
.reveal-visible * {
    will-change: auto !important;
}

/* Premium scroll choreography */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-fade {
    opacity: 0 !important;
    transition:
        opacity 760ms var(--ease-state),
        transform 760ms var(--ease-state) !important;
    transition-delay: var(--delay, 0s) !important;
    backface-visibility: hidden;
}

.reveal-up {
    transform: translate3d(0, 46px, 0) scale(0.985) !important;
}

.reveal-left {
    transform: translate3d(-42px, 18px, 0) scale(0.985) !important;
}

.reveal-right {
    transform: translate3d(42px, 18px, 0) scale(0.985) !important;
}

.reveal-scale {
    transform: translate3d(0, 28px, 0) scale(0.96) !important;
}

.reveal-fade {
    transform: translate3d(0, 18px, 0) !important;
}

section.reveal-up,
footer.reveal-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.reveal-visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

section.reveal-visible .section-title,
section.reveal-visible h2,
section.reveal-visible .section-desc {
    text-wrap: balance;
}

.glass-panel.reveal-up,
.price-card.reveal-up,
.feature-accordion-item.reveal-up,
.testi-card.reveal-up {
    transition-duration: 680ms !important;
}

.glass-panel.reveal-visible,
.price-card.reveal-visible,
.feature-accordion-item.reveal-visible,
.testi-card.reveal-visible {
    box-shadow: 0 18px 48px rgba(31, 16, 110, 0.08);
}

section.reveal-up > .container,
section.reveal-up > [class*="max-w-container"],
footer.reveal-up > .container {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 760ms var(--ease-state),
        transform 760ms var(--ease-state);
}

section.reveal-visible > .container,
section.reveal-visible > [class*="max-w-container"],
footer.reveal-visible > .container {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

#how-it-works .glass-panel.reveal-up,
#pricing .price-card.reveal-up {
    opacity: 0 !important;
    transform: translate3d(0, 34px, 0) scale(0.985) !important;
    transition:
        opacity 780ms var(--ease-state),
        transform 780ms var(--ease-state),
        box-shadow 260ms var(--ease-out-quint),
        border-color 260ms var(--ease-out-quint) !important;
}

#how-it-works .glass-panel.reveal-visible,
#pricing .price-card.reveal-visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

#pricing .price-card.popular.highlighted-blue.reveal-visible {
    transform: translate3d(0, 0, 0) scale(1.025) !important;
}

#pricing .price-card.popular.highlighted-blue:hover {
    transform: translate3d(0, -5px, 0) scale(1.025) !important;
}

#how-it-works .glass-panel:hover {
    transform: translate3d(0, -4px, 0) scale(1) !important;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-up,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-fade,
    .reveal-visible {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        clip-path: none !important;
        transition-duration: 1ms !important;
    }

    #hero-anim-root .comment-box,
    #hero-anim-root .danger-overlay,
    #hero-anim-root .danger-label,
    #hero-anim-root .delete-badge {
        transition-delay: 0ms !important;
    }
}

/* Dashboard demo replacement over the old inline prototype. */
#boostingr-dash {
    min-height: 610px !important;
    border: 1px solid rgba(255,255,255,0.16) !important;
    border-radius: 22px !important;
    background: linear-gradient(145deg, #f8f7ff 0%, #ffffff 44%, #f1efff 100%) !important;
    box-shadow: 0 34px 90px rgba(17, 4, 82, 0.26), 0 1px 0 rgba(255,255,255,0.75) inset !important;
}

#boostingr-dash [aria-disabled="true"] {
    pointer-events: none !important;
    cursor: default !important;
}

#boostingr-dash > div:first-child {
    width: 218px !important;
    background: #12092f !important;
    border-right: 1px solid rgba(255,255,255,0.10) !important;
    padding: 18px 10px !important;
}

#boostingr-dash > div:first-child * {
    color: rgba(255,255,255,0.72) !important;
}

#boostingr-dash > div:first-child img {
    filter: none !important;
}

#boostingr-dash .dash-nav-item {
    margin: 8px 0 !important;
    padding: 13px 14px !important;
    border-left: 0 !important;
    border-radius: 13px !important;
    color: rgba(255,255,255,0.68) !important;
    background: transparent !important;
    cursor: pointer !important;
    transition: transform 220ms var(--ease-out-quint), background-color 220ms var(--ease-out-quint), color 220ms var(--ease-out-quint) !important;
}

#boostingr-dash .dash-nav-item:hover {
    transform: translateX(3px);
    background: rgba(255,255,255,0.08) !important;
}

#boostingr-dash .dash-nav-item.active {
    background: #ffffff !important;
    color: #3810C9 !important;
    box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

#boostingr-dash .dash-nav-item.active * {
    color: #3810C9 !important;
}

#boostingr-dash > div:last-child > div:first-child {
    background: rgba(255,255,255,0.72) !important;
    backdrop-filter: blur(18px);
}

#boostingr-dash > div:first-child > div:nth-child(2) > div:last-child,
#boostingr-dash > div:first-child > nav ~ div,
#boostingr-dash > div:last-child > div:first-child {
    display: none !important;
}

.dash-demo-panel {
    animation: dashPanelIn 360ms var(--ease-state) both;
}

.dash-demo-heading span {
    display: block;
    margin-bottom: 10px;
    color: #3810C9;
    font-size: 0.86rem;
    font-weight: 850;
    letter-spacing: -0.01em;
    text-transform: none;
}

.dash-demo-heading h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: clamp(1.8rem, 3.2vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 900;
}

.dash-demo-heading p {
    max-width: 680px;
    color: #5b5870;
    font-size: 1rem;
    line-height: 1.65;
}

.dash-demo-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.dash-demo-stat {
    padding: 18px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(56, 16, 201, 0.08);
}

.dash-demo-stat strong {
    display: block;
    color: #1d143f;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.035em;
    font-variant-numeric: tabular-nums;
}

.dash-demo-stat span,
.dash-demo-stat small {
    display: block;
    color: #6d6882;
}

.dash-demo-stat span {
    margin-top: 10px;
    font-weight: 800;
}

.dash-demo-stat small {
    margin-top: 4px;
    font-size: 0.8rem;
}

.dash-demo-list {
    display: grid;
    gap: 12px;
}

.dash-demo-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(56, 16, 201, 0.08);
}

.dash-demo-row strong {
    color: #151129;
    font-size: 0.96rem;
}

.dash-demo-row p {
    margin-top: 5px;
    color: #68647a;
    font-size: 0.9rem;
    line-height: 1.45;
}

.dash-demo-row > span {
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(56, 16, 201, 0.09);
    color: #3810C9;
    font-size: 0.78rem;
    font-weight: 850;
}

.dash-demo-rail,
.dash-demo-rail-card {
    padding: 18px;
    border-radius: 18px;
    background: #19103c;
    color: #ffffff;
}

.dash-demo-rail span,
.dash-demo-rail-card span {
    color: rgba(255,255,255,0.68);
    font-size: 0.78rem;
    font-weight: 800;
}

.dash-demo-rail strong {
    display: block;
    margin: 16px 0 4px;
    font-size: 4rem;
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.dash-demo-rail em {
    color: #9bffcf;
    font-style: normal;
    font-weight: 850;
}

.dash-demo-rail p,
.dash-demo-rail-card div {
    margin-top: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.45;
}

.dash-demo-rail-card {
    background: #ffffff;
    color: #17122c;
    border: 1px solid rgba(56, 16, 201, 0.08);
}

.dash-demo-rail-card strong {
    color: #17122c;
}

.dash-demo-rail-card div {
    display: flex;
    justify-content: space-between;
    color: #5f5a73;
}

.dash-demo-rail-card b {
    color: #3810C9;
}

@keyframes dashPanelIn {
    from {
        opacity: 0;
        transform: translate3d(0, 12px, 0);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

@media (max-width: 1024px) {
    #boostingr-dash {
        flex-direction: column !important;
    }

    #boostingr-dash > div:first-child {
        width: auto !important;
        flex-direction: row !important;
        overflow-x: auto;
    }

    .dash-demo-stats {
        grid-template-columns: 1fr;
    }

    #right-panel {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding-top: 60px !important;
    }

    .footer-watermark {
        display: none;
    }

    .dash-demo-row {
        grid-template-columns: 1fr;
    }
}

/* Public-page interaction cursor guard. */
a[href],
button:not(:disabled),
[role="button"]:not([aria-disabled="true"]),
input[type="button"]:not(:disabled),
input[type="submit"]:not(:disabled),
input[type="reset"]:not(:disabled),
summary,
.btn,
.cta-button,
.nav-link,
.dash-nav-item,
.acc-header {
    cursor: pointer !important;
}

button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled,
[aria-disabled="true"] {
    cursor: not-allowed !important;
}



