/* ============================
   Clawland.ai - Zero-Config Deploy Page Styles
   ============================ */

/* ===== Hero ===== */
.deploy-hero {
    padding: calc(var(--nav-height) + 80px) 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0e1a 0%, #0f172a 50%, #0c1220 100%);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
    animation: grid-drift 20s linear infinite;
}
@keyframes grid-drift {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.hero-glow {
    position: absolute;
    top: -200px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, rgba(139,92,246,0.06) 40%, transparent 70%);
    pointer-events: none;
    animation: hero-glow-pulse 6s ease-in-out infinite;
}
@keyframes hero-glow-pulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.12); }
}

.deploy-hero-content { position: relative; z-index: 1; text-align: center; max-width: 860px; margin: 0 auto; }

.deploy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 100px;
    font-size: 0.9rem;
    color: #93c5fd;
    margin-bottom: 28px;
    animation: badge-float 3s ease-in-out infinite;
}
@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.badge-dot {
    width: 8px; height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(59,130,246,0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(59,130,246,0); }
}

.deploy-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.15;
    color: #f1f5f9;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text-deploy {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease-in-out infinite;
}
@keyframes gradient-shift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.deploy-hero-desc {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 40px;
}

.deploy-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.dh-stat { text-align: center; }
.dh-stat-num { font-size: 2rem; font-weight: 800; color: #f1f5f9; font-family: 'JetBrains Mono', monospace; }
.dh-stat-label { font-size: 0.8rem; color: #64748b; margin-top: 4px; }
.dh-stat-divider { width: 1px; height: 40px; background: rgba(100,116,139,0.3); }

/* ===== Floating Particles ===== */
.deploy-hero .hero-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: particle-float linear infinite;
}
@keyframes particle-float {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-400px) scale(1.2); }
}

/* ===== Deploy Simulator ===== */
.deploy-simulator-section { padding-bottom: 80px; }

.simulator-wrapper { max-width: 780px; margin: 0 auto; }

.simulator-card {
    background: rgba(15,23,42,0.8);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 16px;
    padding: 36px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 60px rgba(59,130,246,0.05);
    transition: border-color 0.4s, box-shadow 0.4s;
}
.simulator-card:hover {
    border-color: rgba(59,130,246,0.3);
    box-shadow: 0 0 80px rgba(59,130,246,0.1);
}

.sim-phase.hidden { display: none; }

/* Input */
.sim-input-row {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(30,41,59,0.8);
    border: 1px solid rgba(100,116,139,0.2);
    border-radius: 12px;
    padding: 6px 6px 6px 16px;
}

.sim-input-icon { color: #64748b; font-size: 1.3rem; flex-shrink: 0; }

.sim-url-input {
    flex: 1;
    background: none; border: none; outline: none;
    color: #e2e8f0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    padding: 10px 0;
    min-width: 0;
}
.sim-url-input::placeholder { color: #475569; }

.sim-deploy-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}
.sim-deploy-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(59,130,246,0.4); }

.sim-quick-links {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.sim-quick-links > span { color: #64748b; font-size: 0.85rem; }

.sim-example {
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.2);
    color: #93c5fd;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    transition: all 0.2s;
}
.sim-example:hover { background: rgba(59,130,246,0.15); border-color: rgba(59,130,246,0.4); }

/* Analysis */
.analysis-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}
.analysis-header h3 { color: #e2e8f0; font-size: 1.15rem; margin: 0; }

.analysis-spinner {
    width: 24px; height: 24px;
    border: 3px solid rgba(59,130,246,0.2);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.a-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 6px;
    opacity: 0.4;
    transition: all 0.4s ease;
}
.a-step.active { opacity: 1; background: rgba(59,130,246,0.05); }
.a-step.done { opacity: 0.7; }
.a-step-icon { color: #64748b; width: 24px; text-align: center; }
.a-step.active .a-step-icon { color: #3b82f6; }
.a-step.done .a-step-icon { color: #10b981; }
.a-step-text { flex: 1; color: #94a3b8; font-size: 0.95rem; }
.a-step.active .a-step-text { color: #e2e8f0; }
.a-step-status { color: #3b82f6; width: 24px; text-align: center; }
.a-step.done .a-step-status { color: #10b981; }
.a-step.done .a-step-status::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }

.analysis-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}
.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(30,41,59,0.8);
    border-radius: 3px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 3px;
    transition: width 0.3s ease;
}
.progress-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: #93c5fd;
    min-width: 42px;
    text-align: right;
}

/* Config Preview */
.config-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.config-label { color: #94a3b8; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.config-badge {
    background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(236,72,153,0.15));
    border: 1px solid rgba(139,92,246,0.3);
    color: #c4b5fd;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.config-code {
    background: rgba(10,14,26,0.9);
    border: 1px solid rgba(59,130,246,0.1);
    border-radius: 10px;
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    color: #93c5fd;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre;
    margin: 0;
}

/* Success */
.sim-success { text-align: center; padding: 40px 20px; }
.success-icon { width: 72px; height: 72px; margin: 0 auto 20px; }

.checkmark { width: 72px; height: 72px; }
.checkmark-circle { stroke-dasharray: 166; stroke-dashoffset: 166; stroke-width: 2; stroke: #10b981; animation: stroke-anim 0.6s cubic-bezier(0.65,0,0.45,1) forwards; }
.checkmark-check { stroke-dasharray: 48; stroke-dashoffset: 48; stroke-width: 3; stroke: #10b981; animation: stroke-anim 0.3s cubic-bezier(0.65,0,0.45,1) 0.4s forwards; }
@keyframes stroke-anim { to { stroke-dashoffset: 0; } }

.sim-success h3 { color: #10b981; font-size: 1.4rem; margin-bottom: 20px; }

.success-url {
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 10px;
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.url-label { color: #6ee7b7; font-size: 0.9rem; }
.url-link {
    color: #34d399;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    text-decoration: none;
}
.url-link:hover { text-decoration: underline; }

.success-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.success-meta i { margin-right: 4px; }

.sim-reset-btn {
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.3);
    color: #93c5fd;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.sim-reset-btn:hover { background: rgba(59,130,246,0.2); }

/* ===== Features Pillar Grid ===== */
.features-pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.pillar-card {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(59,130,246,0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.4s;
}
.pillar-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(59,130,246,0.08), 0 0 60px rgba(59,130,246,0.04); }
.pillar-card:hover::before { opacity: 1; }
.pillar-card:hover .pillar-icon { transform: scale(1.1); box-shadow: 0 0 20px rgba(59,130,246,0.2); }

.pillar-icon-wrap { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.pillar-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #93c5fd;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pillar-number { font-size: 2.5rem; font-weight: 900; color: rgba(59,130,246,0.08); font-family: 'JetBrains Mono', monospace; line-height: 1; }

.pillar-card h3 { color: #e2e8f0; font-size: 1.2rem; margin-bottom: 10px; }
.pillar-card p { color: #94a3b8; font-size: 0.92rem; line-height: 1.7; margin-bottom: 18px; }

.pillar-features { list-style: none; padding: 0; }
.pillar-features li {
    color: #94a3b8;
    font-size: 0.88rem;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pillar-features li i { color: #10b981; margin-top: 3px; font-size: 0.75rem; flex-shrink: 0; }

/* ===== Pipeline ===== */
.pipeline-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pipe-step {
    text-align: center;
    padding: 24px 20px;
    flex: 0 0 auto;
    min-width: 140px;
    position: relative;
}

.pipe-icon {
    width: 64px; height: 64px;
    background: rgba(59,130,246,0.08);
    border: 2px solid rgba(59,130,246,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #93c5fd;
    margin: 0 auto 14px;
    transition: all 0.4s;
}
.pipe-step.active .pipe-icon {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 30px rgba(59,130,246,0.4);
    animation: pipe-active-pulse 2.5s ease-in-out infinite;
}
@keyframes pipe-active-pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(59,130,246,0.4); }
    50% { box-shadow: 0 0 50px rgba(59,130,246,0.6), 0 0 80px rgba(139,92,246,0.2); }
}
.pipe-step:hover .pipe-icon { transform: scale(1.08); }

.pipe-label { color: #e2e8f0; font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.pipe-detail { color: #64748b; font-size: 0.8rem; }

.pipe-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    color: rgba(59,130,246,0.3);
    font-size: 1.2rem;
}

/* ===== Dashboard ===== */
.dashboard-grid { display: flex; flex-direction: column; gap: 24px; }

.dash-kpi {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.kpi-card {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(59,130,246,0.1);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}
.kpi-card:hover { border-color: rgba(59,130,246,0.25); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,130,246,0.08); }

.kpi-icon { font-size: 1.3rem; color: #3b82f6; margin-bottom: 10px; }
.kpi-value { font-size: 2rem; font-weight: 800; color: #f1f5f9; font-family: 'JetBrains Mono', monospace; }
.kpi-label { color: #64748b; font-size: 0.82rem; margin: 6px 0 8px; }
.kpi-trend { font-size: 0.78rem; font-weight: 600; }
.kpi-trend.up { color: #10b981; }

.dash-charts {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
}

.chart-card {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(59,130,246,0.1);
    border-radius: 14px;
    padding: 24px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.chart-header h4 { color: #e2e8f0; font-size: 1rem; margin: 0; }

.chart-badge {
    background: rgba(100,116,139,0.15);
    border: 1px solid rgba(100,116,139,0.2);
    color: #94a3b8;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    display: flex; align-items: center; gap: 6px;
}
.chart-badge.live { color: #10b981; border-color: rgba(16,185,129,0.3); }
.chart-badge.live i { font-size: 0.5rem; animation: live-pulse 1.5s ease-in-out infinite; }
@keyframes live-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.dash-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Performance bars */
.perf-metrics { display: flex; flex-direction: column; gap: 18px; }

.perf-item { display: grid; grid-template-columns: 100px 1fr 60px; align-items: center; gap: 12px; }
.perf-label { color: #94a3b8; font-size: 0.85rem; }
.perf-bar-wrap { height: 8px; background: rgba(30,41,59,0.8); border-radius: 4px; overflow: hidden; }
.perf-bar {
    height: 100%;
    width: var(--perf-width);
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
    position: relative;
    transition: width 1.5s ease;
}
.perf-bar span { display: none; }
.perf-detail { color: #64748b; font-size: 0.78rem; font-family: 'JetBrains Mono', monospace; text-align: right; }

/* Update log */
.update-log {
    max-height: 310px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(59,130,246,0.2) transparent;
}
.update-log::-webkit-scrollbar { width: 4px; }
.update-log::-webkit-scrollbar-thumb { background: rgba(59,130,246,0.2); border-radius: 2px; }

.log-entry {
    display: grid;
    grid-template-columns: 130px 90px 1fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(100,116,139,0.08);
    font-size: 0.82rem;
    align-items: center;
}
.log-time { color: #475569; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; }
.log-source {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
}
.log-source.github { background: rgba(100,116,139,0.1); color: #94a3b8; }
.log-source.reddit { background: rgba(255,69,0,0.08); color: #ff8c00; }
.log-source.devto { background: rgba(59,130,246,0.08); color: #60a5fa; }
.log-source.community { background: rgba(16,185,129,0.08); color: #34d399; }
.log-msg { color: #94a3b8; }

/* ===== Comparison ===== */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.compare-col {
    background: rgba(15,23,42,0.6);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(100,116,139,0.1);
}

.compare-col.zero-config {
    border-color: rgba(16,185,129,0.2);
    background: rgba(16,185,129,0.03);
}

.compare-header {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.compare-col.traditional .compare-header { color: #f87171; }
.compare-col.zero-config .compare-header { color: #10b981; }

.compare-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(100,116,139,0.06);
    color: #94a3b8;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.compare-x { color: #f87171; font-weight: 700; flex-shrink: 0; }
.compare-check { color: #10b981; font-weight: 700; flex-shrink: 0; }

.compare-time {
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}
.compare-col.traditional .compare-time { background: rgba(248,113,113,0.08); color: #f87171; }
.compare-col.zero-config .compare-time { background: rgba(16,185,129,0.08); color: #10b981; }

.compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(100,116,139,0.3);
}

/* ===== CTA ===== */
.deploy-cta-section {
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(139,92,246,0.06));
    border-top: 1px solid rgba(59,130,246,0.1);
    border-bottom: 1px solid rgba(59,130,246,0.1);
    position: relative;
    overflow: hidden;
}
.deploy-cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 300%; height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #8b5cf6, #ec4899, transparent);
    animation: cta-border-sweep 4s linear infinite;
}
@keyframes cta-border-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.deploy-cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.deploy-cta-content h2 { color: #f1f5f9; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 16px; line-height: 1.3; }
.deploy-cta-content p { color: #94a3b8; font-size: 1.05rem; margin-bottom: 32px; }

.deploy-cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .dash-kpi { grid-template-columns: repeat(2, 1fr); }
    .dash-charts { grid-template-columns: 1fr; }
    .dash-bottom { grid-template-columns: 1fr; }
    .compare-grid { grid-template-columns: 1fr; }
    .compare-vs { padding: 16px 0; }
    .features-pillar-grid { grid-template-columns: 1fr; }
    .pipe-arrow { transform: rotate(90deg); padding: 0 8px; }
    .pipeline-visual { flex-direction: column; align-items: center; }
    .log-entry { grid-template-columns: 1fr; gap: 4px; }
    .log-time { font-size: 0.7rem; }
}

@media (max-width: 640px) {
    .deploy-hero { padding: calc(var(--nav-height) + 40px) 0 60px; }
    .deploy-hero-stats { gap: 16px; }
    .dh-stat-num { font-size: 1.5rem; }
    .dh-stat-divider { display: none; }
    .simulator-card { padding: 20px; }
    .sim-input-row { flex-direction: column; padding: 12px; }
    .sim-deploy-btn { width: 100%; justify-content: center; }
    .sim-input-icon { display: none; }
    .success-meta { flex-direction: column; gap: 8px; }
    .dash-kpi { grid-template-columns: 1fr 1fr; }
    .perf-item { grid-template-columns: 80px 1fr 50px; }
    .deploy-cta-actions { flex-direction: column; align-items: center; }
    .deploy-cta-actions .btn { width: 100%; max-width: 300px; }
}

/* ===== Additional Animation Effects ===== */

/* Comparison columns entrance */
.compare-col {
    transition: all 0.4s ease;
}
.compare-col:hover {
    transform: translateY(-4px);
}
.compare-col.traditional:hover {
    box-shadow: 0 8px 30px rgba(248,113,113,0.08);
}
.compare-col.zero-config:hover {
    box-shadow: 0 8px 30px rgba(16,185,129,0.1);
    border-color: rgba(16,185,129,0.35);
}

/* Compare items cascade animation */
.compare-item {
    transition: transform 0.2s, color 0.2s;
}
.compare-item:hover {
    transform: translateX(4px);
    color: #e2e8f0;
}

/* Log entry hover effect */
.log-entry {
    transition: background 0.2s;
}
.log-entry:hover {
    background: rgba(59,130,246,0.03);
}

/* Perf bar animated fill on view */
.perf-bar {
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.perf-bar.animated {
    width: var(--perf-width);
}

/* Deploy button shine effect */
.sim-deploy-btn {
    position: relative;
    overflow: hidden;
}
.sim-deploy-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: rotate(25deg) translateX(-100%);
    transition: transform 0.6s;
}
.sim-deploy-btn:hover::after {
    transform: rotate(25deg) translateX(50%);
}

/* Section divider glow */
.deploy-features-section,
.deploy-pipeline-section,
.deploy-dashboard-section,
.deploy-compare-section {
    position: relative;
}
.deploy-features-section::before,
.deploy-dashboard-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
}

/* Chart card hover */
.chart-card {
    transition: border-color 0.3s, box-shadow 0.3s;
}
.chart-card:hover {
    border-color: rgba(59,130,246,0.2);
    box-shadow: 0 4px 20px rgba(59,130,246,0.06);
}

/* Pipeline arrow animation */
.pipe-arrow i {
    animation: arrow-bounce 2s ease-in-out infinite;
}
@keyframes arrow-bounce {
    0%, 100% { transform: translateX(0); opacity: 0.3; }
    50% { transform: translateX(4px); opacity: 0.8; }
}

/* Success checkmark glow */
.sim-success .success-icon {
    animation: success-glow 2s ease-in-out infinite;
}
@keyframes success-glow {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(16,185,129,0.3)); }
    50% { filter: drop-shadow(0 0 18px rgba(16,185,129,0.5)); }
}
