/* --------------------------------------------------
   Hero
-------------------------------------------------- */

.hero {
    padding: 90px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.hero h1 {
    margin: 0;

    color: var(--green-dark);

    font-size: clamp(4rem, 10vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.hero-subtitle {
    max-width: 650px;

    margin: 24px 0 10px;

    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
}

.hero-description {
    max-width: 600px;

    color: var(--text-muted);

    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;

    margin-top: 32px;
}

.hero .button-secondary:hover {
    background: var(--green-soft);
}

.hero-visual {
    min-height: 430px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 430px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            var(--green-dark),
            var(--green-light)
        );

    color: white;

    border: 1px solid rgba(0, 0, 0, 0.1);

    font-weight: 700;
}


/* --------------------------------------------------
   Network typography
-------------------------------------------------- */

.network-layout h2 {
    margin: 0 0 14px;

    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
}

.network-layout p {
    color: var(--text-muted);
}


/* --------------------------------------------------
   Stats
-------------------------------------------------- */

.ghast-renting {
    background: var(--surface);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card {
    padding: 24px;

    background: var(--green-soft);
    border: 1px solid var(--border);
}

.stat-card strong {
    display: block;

    color: var(--green-dark);

    font-size: 1.8rem;
}

.stat-card span {
    color: var(--text-muted);
}


/* --------------------------------------------------
   Services
-------------------------------------------------- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    min-height: 260px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 26px;

    background: var(--surface);
    border: 1px solid var(--border);
}

.service-card h3 {
    margin: 14px 0 8px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-muted);
}

.service-card > a {
    margin-top: 20px;

    color: var(--green-dark);
    font-weight: 800;
}

.service-status {
    color: var(--green-dark);

    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}


/* --------------------------------------------------
   Network
-------------------------------------------------- */

.network-preview {
    background: var(--green-dark);
    color: white;
}

.network-preview .eyebrow {
    color: var(--green-light);
}

.network-preview p {
    color: rgba(255, 255, 255, 0.78);
}

.network-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.network-preview .button-primary {
    margin-top: 18px;

    background: white;
    border-color: white;

    color: var(--green-dark);
}

.network-preview .button-primary:hover {
    background: var(--green-soft);
}


/* --------------------------------------------------
   Hub cards
-------------------------------------------------- */

.hub-list {
    display: grid;
    gap: 12px;
}

.hub-card {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px;

    background: white;
    color: var(--text);
}

.hub-card h3 {
    margin: 5px 0 0;
}

.hub-card p {
    margin: 0;
    color: var(--text-muted);
}

.hub-status {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hub-status.operational {
    color: var(--green-dark);
}

.hub-status.planned {
    color: #856b18;
}


/* --------------------------------------------------
   Responsive
-------------------------------------------------- */

@media (max-width: 900px) {

    .hero-grid,
    .network-layout {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        padding-top: 60px;
    }

}


@media (max-width: 600px) {

    .hero {
        padding: 60px 0;
    }

    .stats-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .image-placeholder {
        min-height: 280px;
    }

}