:root {
    color-scheme: light;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f8fafc;
    color: #111827;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #f8fafc;
}

a {
    color: #16a34a;
    text-decoration: none;
}

.container {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    font-weight: 700;
    font-size: 1.15rem;
    color: #111827;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-content {
    padding: 2rem 0 4rem;
}

.site-footer {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.95rem;
    color: #6b7280;
}

.hero {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.hero-copy {
    display: grid;
    gap: 2rem;
}

.hero-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 1.5rem;
}

.hero-text h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
}

.hero-text p {
    margin: 1rem 0;
    line-height: 1.8;
    color: #4b5563;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.95rem 1.5rem;
    border: 1px solid transparent;
    font-weight: 600;
    gap: 0.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.button-primary {
    background: #16a34a;
    color: white;
}

.button-secondary {
    background: white;
    color: #111827;
    border-color: #d1d5db;
}

.features,
.timeline-section,
.page-section {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.feature-card,
.post-card,
.timeline-item,
.cta-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.feature-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card h2,
.page-header h1,
.timeline-item h3,
.post-card h2 {
    margin-top: 0;
}

.timeline-list {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.timeline-badge {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: #16a34a;
    color: white;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.cta-section {
    padding: 0;
}

.cta-card {
    text-align: center;
}

.cta-card h2 {
    margin-bottom: 0.75rem;
}

.page-header {
    margin-bottom: 1.5rem;
}

.page-header p {
    margin: 0.5rem 0 0;
    color: #4b5563;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.5rem;
    font-weight: 600;
    color: #111827;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    padding: 0.95rem 1rem;
    font: inherit;
}

.form-status {
    color: #16a34a;
    font-weight: 500;
}

.contact-success {
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    font-size: 4rem;
    color: #16a34a;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-success h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.contact-success p {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.button-outline {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s;
}

.button-outline:hover {
    border-color: #16a34a;
    color: #16a34a;
    background: #f0fdf4;
}

.post-list {
    display: grid;
    gap: 1rem;
}

.post-card {
    padding: 1.5rem;
}

.post-card-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.post-card h2 {
    margin: 0;
}

.post-content {
    line-height: 1.9;
    color: #334155;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    color: #111827;
}

.post-content p {
    margin: 1rem 0;
}

.read-more,
.back-link {
    color: #16a34a;
}

.empty-state {
    text-align: center;
    color: #6b7280;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .hero-copy {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}