/* =================================
   CaptureOK - Bulma + Clean Borderless UI
   ================================= */

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

:root {
    --accent: #00d97e;
    --dark: #1a1a2e;
    --dark-alt: #16213e;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Hero Section */
.hero-gradient {
    background: var(--dark);
}

.brand {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-title {
    color: #ffffff !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
    line-height: 1.1 !important;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.button.is-ghost {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.button.is-ghost:hover {
    color: #ffffff;
    background: transparent;
}

/* Remove all box borders */
.box {
    border: none !important;
    box-shadow: none !important;
    border-radius: 16px;
}

/* Feature boxes */
.feature-box {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08) !important;
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

/* Use case section */
.use-cases-section {
    background: #fafafa;
}

.use-case-box {
    background: white;
    padding: 1.75rem;
    text-align: center;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.use-case-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12) !important;
}

/* Code preview */
.code-preview {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

.code-header {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.code-preview pre {
    padding: 2rem;
    margin: 0;
    overflow-x: auto;
    border-radius: 0;
}

.code-preview code {
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Deployment boxes */
.deployment-box {
    background: white;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.deployment-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
}

.featured-box {
    background: #f8f9fa;
}

.featured-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-weight: 600;
}

.deployment-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.deployment-box ul {
    margin-left: 0;
    list-style: none;
}

.deployment-box ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.deployment-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* CTA Section */
.cta-gradient {
    background: var(--dark-alt);
}

/* Container max widths */
.container {
    max-width: 1000px !important;
}

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.25rem !important;
    }
    
    .feature-box,
    .deployment-box {
        margin-bottom: 1rem;
    }
}
