/* ============================================================
   dino/state-hero  — frontend styles
   ============================================================ */

.dino-state-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.dino-hero__overlay {
    position: absolute;
    inset: 0;
    background: #0d1f15;
    pointer-events: none;
}

.dino-hero__content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 3rem 1.5rem 2rem;
}

.dino-hero__eyebrow {
    display: inline-block;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #86efac;
    margin-bottom: .75rem;
}

.dino-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

.dino-hero__sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin: 0 0 2rem;
    opacity: .9;
}

.dino-hero__cta {
    display: inline-block;
    padding: .9rem 2.4rem;
    background: #16a34a;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
.dino-hero__cta:hover {
    background: #15803d;
    transform: translateY(-2px);
    color: #fff;
}

.dino-hero__stats {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(6px);
    padding: 1rem 0;
}

.dino-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2.5rem;
    border-right: 1px solid rgba(255,255,255,.15);
}
.dino-hero__stat:last-child { border-right: none; }

.dino-hero__stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #86efac;
    line-height: 1;
}
.dino-hero__stat-label {
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .8;
    margin-top: .25rem;
}

@media (max-width: 640px) {
    .dino-state-hero { min-height: 360px; }
    .dino-hero__stats { flex-direction: row; flex-wrap: wrap; }
    .dino-hero__stat  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); width: 50%; }
}
