.page-shell {
    padding-top: 5.5rem;
}



.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.8rem;
    padding: 2.6rem 2.4rem;
    margin-top: 2rem;
    align-items: center;
}

.hero-text {
    max-width: 40rem;
}

.eyebrow {
    font-size: var(--font-xs);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 0.6rem;
}

.hero h1 {
    margin: 0 0 0.9rem;
    font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
    letter-spacing: var(--tracking-tight);
}

.hero-subtitle {
    margin: 0 0 0.9rem;
    color: var(--text-soft);
    font-size: 1.02rem;
}

.hero-text p {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.hero-text > p:last-of-type {
    font-size: 0.95rem;
    color: var(--text-muted);
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.4rem;
    margin-bottom: 0.7rem;
}


.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.7rem;
    font-size: var(--font-xs);
    color: var(--text-soft);
}

.hero-badges span {
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-pill);
    background: var(--neutral-50);
    border: 1px solid rgba(209, 213, 219, 0.7);
}


.hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: var(--neutral-50);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(209, 213, 219, 0.65);
}

.hero-image img {
    border-radius: calc(var(--radius-lg) - 6px);
}



.section {
    margin-top: 3rem;
}

.section-header {
    margin-bottom: 1.7rem;
}

.section-header h2 {
    margin: 0 0 0.4rem;
    font-size: 1.7rem;
}

.section-header p {
    margin: 0;
    color: var(--text-muted);
}



.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.info-card {
    position: relative;
    padding: 1.6rem 1.5rem;
}

.info-card::before {
    content: "";
    position: absolute;
    inset-inline: 1.5rem;
    top: 0.9rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-teal));
    opacity: 0.4;
}

.info-card h3 {
    margin: 0.8rem 0 0.5rem; 
    font-size: 1.05rem;
}

.info-card p {
    margin: 0;
    font-size: 0.96rem;
    color: var(--text-soft);
}



.story {
    padding: 2.1rem 2rem;
    margin-top: 3rem;
}

.story h2 {
    margin-bottom: 0.9rem;
    font-size: 1.7rem;
}

.story p {
    margin-bottom: 0.75rem;
}

.story-highlight {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    background: #e5f6ec;
    border: 1px solid rgba(187, 247, 208, 0.9);
}



@media (max-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding: 2.2rem 2rem;
        gap: 2.1rem;
    }

    .hero-media {
        order: -1; 
    }

    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .hero {
        padding: 1.9rem 1.5rem;
        margin-top: 1.4rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-image {
        padding: 0.8rem;
    }

    .info-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .story {
        padding-inline: 1.5rem;
    }
}
