:root {
    /* Colors - Dark Blue Product Palette */
    --bg-base: #0a0f1f;
    --bg-soft: #100f24;
    --bg-surface: #17182f;
    --bg-surface-2: #221b42;
    --bg-card: rgba(24, 20, 44, 0.62);
    
    --text-main: #eaf1ff;
    --text-muted: #a9add3;
    
    --primary: #4f8cff;
    --secondary: #8b5cf6;
    --primary-hover: #3b82f6;
    
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Layout */
    --font-main: 'Outfit', sans-serif;
    --container: 1200px;
    --header-height: 80px;
    
    /* Glassmorphism */
    --glass-bg: rgba(10, 15, 31, 0.7);
    --glass-border: 1px solid rgba(139, 92, 246, 0.28);
    --blur: blur(16px);
    
    /* Animations */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-base);
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.badge-small {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    display: inline-block;
}
.bg-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-xl { padding: 1.25rem 2.5rem; font-size: 1.25rem; border-radius: 999px; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(79, 140, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 140, 255, 0.5);
}

.btn-secondary {
    background: var(--bg-card);
    border: var(--glass-border);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: white;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    border-bottom: var(--glass-border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mascot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(79, 140, 255, 0.4);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-cta {
    display: flex;
    gap: 1rem;
}

/* Hero */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--primary);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary);
    opacity: 0.3;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Mockup */
.hero-image {
    perspective: 1000px;
}

.glass-mockup {
    background: rgba(16, 15, 36, 0.4);
    border: var(--glass-border);
    border-radius: 1rem;
    overflow: hidden;
    backdrop-filter: var(--blur);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(79, 140, 255, 0.2);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}

.glass-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: var(--glass-border);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
}

.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }

.mockup-title {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.mockup-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chat-message {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.chat-message.user { justify-content: flex-end; }

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.avatar-img {
    object-fit: cover;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.bg-gradient { background: linear-gradient(135deg, #3b82f6, #8b5cf6); }
.bg-strix { background: linear-gradient(135deg, var(--primary), var(--secondary)); }

.msg-bubble {
    background: var(--bg-card);
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: var(--glass-border);
    max-width: 80%;
    position: relative;
}

.chat-message.user .msg-bubble {
    background: rgba(255, 255, 255, 0.08);
    border-bottom-right-radius: 0.25rem;
}

.chat-message.bot .msg-bubble {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom-left-radius: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Background Glow */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.glow-1 {
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.glow-2 {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}

/* Sections */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Cards */
.grid {
    display: grid;
    gap: 2rem;
}

.cards-grid { grid-template-columns: repeat(3, 1fr); }
.roles-grid { grid-template-columns: repeat(3, 1fr); }
.stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.glass-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 1rem;
    padding: 2.5rem;
    backdrop-filter: var(--blur);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.card-icon.alert { background: rgba(245, 158, 11, 0.1); color: var(--warning); border: 1px solid rgba(245, 158, 11, 0.2); }
.card-icon.error { background: rgba(239, 68, 68, 0.1); color: var(--error); border: 1px solid rgba(239, 68, 68, 0.2); }
.card-icon.warning { background: rgba(139, 92, 246, 0.1); color: var(--primary); border: 1px solid rgba(139, 92, 246, 0.2); }

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.glass-card p {
    color: var(--text-muted);
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-muted);
}

/* Workflow visual */
.glow-box {
    position: relative;
}
.glow-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0.5;
    filter: blur(15px);
}

.visual-container {
    background: var(--bg-base);
    border-radius: 1rem;
    padding: 3rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.workflow-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.wf-node {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    background: var(--bg-card);
    border: var(--glass-border);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wf-node.social { background: rgba(255, 255, 255, 0.1); }
.wf-node.ai { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.wf-node.success { border-color: var(--success); color: var(--success); background: rgba(16, 185, 129, 0.1); }
.wf-node.human { border-color: var(--warning); color: var(--warning); background: rgba(245, 158, 11, 0.1); }

.wf-arrow { color: var(--text-muted); }

.wf-branches {
    display: flex;
    gap: 2rem;
    width: 100%;
    justify-content: center;
}

.wf-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Stats */
.stat-card {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    border: var(--glass-border);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.125rem;
    font-weight: 500;
}

/* CTA Section */
.cta-box {
    text-align: center;
    padding: 5rem 2rem;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-subtext {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cta-subtext i { width: 16px; height: 16px; }

/* Role icons */
.role-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Footer */
/* Marquee Section */
.marquee-section {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    background: var(--bg-base);
}

.marquee-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.spot-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    border-radius: 999px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
    max-width: 900px; /* Reduced width for central focus */
    margin: 0 auto;
    overflow: hidden; /* Hide overflow at container edges */
}

/* Fades to make the edges blend smoothly */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px; /* Deep fade for central emergence */
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-base), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-base), transparent);
}

.marquee-track {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 1rem;
    animation: marquee-scroll 35s linear infinite; /* Faster movement */
    min-width: 100%;
    will-change: transform;
}

.marquee-content.reverse {
    animation: marquee-scroll-reverse 35s linear infinite;
}

/* Pause on hover */
.marquee-track:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Shift by exactly half since content is duplicated */
}

@keyframes marquee-scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-card {
    flex-shrink: 0;
    width: 320px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    background: #11111b; /* Solid Darker Background like image */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.review-text {
    font-size: 0.9rem;
    color: #e2e8f0;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    padding: 0 0.5rem;
}

/* Quotes in Brand Color */
.review-text::before {
    content: '"';
    color: var(--primary); 
    font-family: serif;
    font-size: 2.5rem;
    position: absolute;
    left: -1rem;
    top: -1.5rem;
    opacity: 0.8;
}

.review-text::after {
    content: '"';
    color: var(--primary);
    font-family: serif;
    font-size: 2.5rem;
    position: absolute;
    right: -0.5rem;
    bottom: -2.5rem;
    opacity: 0.8;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2a2a3c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary); /* Brand initial */
    font-size: 0.8rem;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-info strong {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 600;
}

.reviewer-info span {
    font-size: 0.75rem;
    color: var(--primary); /* Brand Handle */
    font-weight: 500;
}

.glow-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--bg-card) 0%, transparent 60%);
    width: 800px;
    height: 300px;
}

/* End Marquee */

.footer {
    border-top: var(--glass-border);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

/* Animations Core */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.fade-in {
    opacity: 0;
    transition: var(--transition);
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .split-layout { grid-template-columns: 1fr; gap: 4rem; }
    .cards-grid, .roles-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; flex-direction: column; }
    .hero-image { transform: none; margin-top: 2rem; }
    .glass-mockup { transform: none; }
    .glass-mockup:hover { transform: none; }
    .cards-grid, .roles-grid, .stats-grid { grid-template-columns: 1fr; }
    .title { font-size: 2.5rem; }
    .cta-subtext { flex-direction: column; gap: 0.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Final High-Impact CTA Section */
.final-cta {
    position: relative;
    padding: 12rem 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.08) 0%, var(--bg-base) 80%);
    overflow: hidden;
}

.cta-logo-wrapper {
    margin-bottom: 3.5rem;
    display: flex;
    justify-content: center;
}

.cta-mascot-img {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.4));
    animation: cta-float 6s ease-in-out infinite;
}

.cta-mascot-img.v1 {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    filter: none;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.6);
}

@keyframes cta-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.cta-title-massive {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 2rem;
    color: #fff;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtitle-massive {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 4rem;
    opacity: 0.9;
}

.cta-button-container {
    margin-bottom: 4rem;
}

.btn-cta-main {
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 99px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
    border: none !important;
    color: white !important;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-cta-main:hover {
    transform: scale(1.08); /* More focus on the button */
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.5);
    filter: brightness(1.1);
}

.cta-minimal-footer {
    font-size: 0.95rem;
    color: var(--text-muted);
    opacity: 0.6;
    max-width: 600px;
    margin: 3rem auto 0;
    line-height: 1.4;
}

/* Response Adjustments */
@media (max-width: 992px) {
    .cta-title-massive { font-size: 4rem; }
}

@media (max-width: 768px) {
    .cta-title-massive {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    .cta-mascot-img {
        width: 120px;
    }
    .cta-subtitle-massive {
        font-size: 1.2rem;
    }
}

/* Integrations Section (Meta, Instagram, Threads) */
#integraciones {
    padding: 8rem 0;
}

.integrations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.integration-card {
    background: rgba(10, 15, 31, 0.4); /* Dark card background similar to reference */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Very subtle border */
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.integration-card:hover {
    background: rgba(10, 15, 31, 0.8);
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.icon-wrapper i, .icon-wrapper svg {
    width: 32px;
    height: 32px;
}

/* Specific Platform Styling matches image reference glowing boxes */
.meta-icon {
    background: rgba(24, 119, 242, 0.05);
    border-color: rgba(24, 119, 242, 0.15);
    color: #1877F2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.1);
}

.ig-icon {
    background: rgba(225, 48, 108, 0.05);
    border-color: rgba(225, 48, 108, 0.15);
    color: #E1306C; /* Alternatively a gradient text */
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.1);
}

.threads-icon {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.integration-card h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.integration-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .integrations-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section Automation Visualizer */
.automation-visualizer {
    position: relative;
    width: 100%;
    height: 500px;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 30px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 0 50px rgba(0,0,0,0.5) inset;
    overflow: hidden;
}

.strix-processor {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.processor-mascot {
    width: 240px;
    height: 240px;
    object-fit: contain;
    animation: cta-float 5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.glow-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.4;
    animation: strix-pulse 2s infinite alternate;
    z-index: 1;
}

@keyframes strix-pulse {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.7; }
}

/* RAW MESSAGES */
.incoming-stream .raw {
    position: absolute;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0;
    z-index: 5;
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

.raw-1 { animation: suckIn 4s infinite cubic-bezier(0.4, 0, 1, 1) 0s; }
.raw-2 { animation: suckIn 4s infinite cubic-bezier(0.4, 0, 1, 1) 1s; }
.raw-3 { animation: suckIn 4s infinite cubic-bezier(0.4, 0, 1, 1) 2s; }
.raw-4 { animation: suckIn 4s infinite cubic-bezier(0.4, 0, 1, 1) 3s; }

@keyframes suckIn {
    0% { top: -10%; left: 0%; transform: scale(1) rotate(-10deg); opacity: 0; }
    15% { opacity: 1; }
    70% { top: 30%; left: 25%; transform: scale(0.5) rotate(10deg); opacity: 0.8; }
    100% { top: 50%; left: 45%; transform: scale(0) rotate(45deg); opacity: 0; }
}

/* PROCESSED LEADS */
.lead-card {
    position: absolute;
    background: rgba(16, 185, 129, 0.08); /* slight green/glass tint */
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    z-index: 5;
    backdrop-filter: blur(8px);
    width: 220px;
    border-left: 3px solid var(--success);
}
.lead-card.lead-2 { border-left-color: var(--primary); background: rgba(79, 140, 255, 0.08); border-color: rgba(79, 140, 255, 0.2); }
.lead-card.lead-3 { border-left-color: var(--warning); background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.2); }

.lead-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lead-name { color: #fff; font-weight: 600; font-size: 0.8rem; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.lead-intent { font-size: 0.7rem; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 700; margin-top: 2px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }

.lead-1 { animation: pushOut1 6s infinite ease-out 0.5s; }
.lead-2 { animation: pushOut2 6s infinite ease-out 2.5s; }
.lead-3 { animation: pushOut3 6s infinite ease-out 4.5s; }

/* Push out to form a list */
@keyframes pushOut1 {
    0% { top: 50%; left: 40%; transform: scale(0); opacity: 0; }
    15% { top: 22%; left: 55%; transform: scale(1.05); opacity: 1; }
    20% { top: 22%; left: 55%; transform: scale(1); opacity: 1; }
    85% { top: 22%; left: 55%; transform: scale(1); opacity: 1; }
    100% { top: 22%; left: 100%; transform: scale(0.9); opacity: 0; }
}
@keyframes pushOut2 {
    0% { top: 50%; left: 40%; transform: scale(0); opacity: 0; }
    15% { top: 45%; left: 55%; transform: scale(1.05); opacity: 1; }
    20% { top: 45%; left: 55%; transform: scale(1); opacity: 1; }
    85% { top: 45%; left: 55%; transform: scale(1); opacity: 1; }
    100% { top: 45%; left: 100%; transform: scale(0.9); opacity: 0; }
}
@keyframes pushOut3 {
    0% { top: 50%; left: 40%; transform: scale(0); opacity: 0; }
    15% { top: 68%; left: 55%; transform: scale(1.05); opacity: 1; }
    20% { top: 68%; left: 55%; transform: scale(1); opacity: 1; }
    85% { top: 68%; left: 55%; transform: scale(1); opacity: 1; }
    100% { top: 68%; left: 100%; transform: scale(0.9); opacity: 0; }
}

@media (max-width: 992px) {
    .automation-visualizer { height: 400px; }
    .strix-processor { left: 50%; top: 30%; }
    
    @keyframes suckIn {
        0% { top: -10%; left: 0%; transform: scale(1) rotate(-10deg); opacity: 0; }
        15% { opacity: 1; }
        100% { top: 30%; left: 50%; transform: scale(0) rotate(45deg); opacity: 0; }
    }
    
    @keyframes pushOut1 {
        0% { top: 30%; left: 50%; transform: scale(0) translateX(-50%); opacity: 0; }
        20% { top: 55%; left: 50%; transform: scale(1) translateX(-50%); opacity: 1; }
        80% { top: 55%; left: 50%; transform: scale(1) translateX(-50%); opacity: 1; }
        100% { top: 120%; left: 50%; transform: scale(0.8) translateX(-50%); opacity: 0; }
    }
    @keyframes pushOut2 {
        0% { top: 30%; left: 50%; transform: scale(0) translateX(-50%); opacity: 0; }
        20% { top: 70%; left: 50%; transform: scale(1) translateX(-50%); opacity: 1; }
        80% { top: 70%; left: 50%; transform: scale(1) translateX(-50%); opacity: 1; }
        100% { top: 120%; left: 50%; transform: scale(0.8) translateX(-50%); opacity: 0; }
    }
    @keyframes pushOut3 {
        0% { top: 30%; left: 50%; transform: scale(0) translateX(-50%); opacity: 0; }
        20% { top: 85%; left: 50%; transform: scale(1) translateX(-50%); opacity: 1; }
        80% { top: 85%; left: 50%; transform: scale(1) translateX(-50%); opacity: 1; }
        100% { top: 120%; left: 50%; transform: scale(0.8) translateX(-50%); opacity: 0; }
    }
}

.split-visualizer {
    min-height: 550px;
    width: 110%;
    margin-left: -5%;
    border-radius: 30px;
    box-shadow: none;
    border: none; /* Make it look fully integrated with background! */
}

@media (max-width: 900px) {
    .split-visualizer {
        width: 100%;
        margin-left: 0;
        min-height: 450px;
    }
}
