/* Landing Page Styles */


/* Blog card text clamping */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Feature narrative sections */
.screenshot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 1rem;
    color: #6b7280;
    text-align: center;
    padding: 2rem;
}

.dark .screenshot-placeholder {
    background: #1f2937;
    border-color: #4b5563;
    color: #9ca3af;
}

/* Compact feature grid */
.compact-feature-card {
    transition: all 0.2s ease;
}

.compact-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.dark .compact-feature-card:hover {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.4);
}

/* Hero product slider */
.slider-slide {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.slider-slide.slider-slide-active {
    opacity: 1;
    pointer-events: auto;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.4);
    transition: background-color 0.2s ease, width 0.2s ease;
    border: none;
    cursor: pointer;
    padding: 0;
}

.slider-dot:hover { background-color: rgba(255, 255, 255, 0.7); }

.slider-dot.slider-dot-active {
    background-color: #facc15;
    width: 28px;
}

.slider-dot:focus-visible {
    outline: 2px solid #facc15;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .slider-slide { transition: none; }
}

