/* Landing Page Layout */
.landing-page {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding-bottom: 4rem;
}

/* Hero Section */
.hero-section {
    padding: 4rem 1rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
    color: var(--text);
}

.text-accent {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 auto 2.5rem;
    max-width: 60ch;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Overrides/Extensions */
.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

/* Features Section */
.features-section {
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.section-header p {
    color: var(--muted);
    font-size: 1.125rem;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    color: white;
}

/* Icon Background Colors */
.bg-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.bg-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.bg-purple { background: linear-gradient(135deg, #a855f7, #9333ea); }
.bg-green { background: linear-gradient(135deg, #22c55e, #16a34a); }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--text);
}

.feature-card p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    flex-grow: 1; /* Pushes the link to the bottom */
}

.feature-link {
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.2s ease;
    margin-top: auto;
}

.feature-link:hover {
    gap: 0.5rem;
}

/* Vision Section */
.vision-section {
    background: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 1rem;
    text-align: center;
    margin-top: 2rem;
}

.vision-content {
    max-width: 700px;
    margin: 0 auto;
}

.vision-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.vision-content p {
    color: var(--muted);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .landing-page {
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}