/* =============================================
   FEATURES.CSS - Features page specific styles
   ============================================= */

/* ----------------- Page Layout ----------------- */
.features-page {
    min-height: 100vh;
    background: #FAFAFA;
}

.features-hero {
    padding: clamp(2rem, 4vw, 4rem) 1.5rem;
    text-align: center;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
}

.features-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.features-hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #666666;
    max-width: 50rem;
    margin: 0 auto;
}

/* ----------------- Demo Section ----------------- */
.demo-section {
    width: 100%;
    max-width: 75rem;
    margin: 3rem auto 5rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.demo-item {
    position: relative;
}

.demo-label {
    font-family: 'Space Mono', monospace;
    color: #FF6600;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

.demo-box-container {
    width: 100%;
    min-height: 37.5rem;
    border: 1px solid #E5E5E5;
    border-radius: 0.25rem;
    background: #FFFFFF;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* ----------------- Description Section ----------------- */
.features-description {
    max-width: 75rem;
    margin: 0 auto 4rem;
    padding: 2rem 1.5rem;
    text-align: center;
    background: #FFFFFF;
    border-top: 1px solid #E5E5E5;
}

.features-description p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #333333;
    max-width: 60rem;
    margin: 0 auto;
}

/* ----------------- Call to Action ----------------- */
.features-cta {
    text-align: center;
    padding: 3rem 1.5rem;
    background: linear-gradient(to bottom, #FAFAFA, #FFFFFF);
}

.features-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* ----------------- Mobile / Responsive ----------------- */
@media (max-width: 768px) {
    .demo-section {
        padding: 0 1rem;
        margin: 2rem auto 3rem;
    }
    
    .demo-label {
        font-size: 11px;
    }
    
    .demo-box-container {
        min-height: 25rem;
    }
    
    .features-description {
        padding: 1.5rem 1rem;
    }
}
