body {
    background:
        linear-gradient(135deg, rgba(5, 8, 20, 0.96) 0%, rgba(9, 16, 31, 0.9) 52%, rgba(7, 9, 18, 0.98) 100%),
        url("/images/vaderdeathstar.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.content-hub-page main,
.home-route-shell {
    display: grid;
    gap: clamp(1.2rem, 3vw, 2.2rem);
}

.content-hero,
.route-hub,
.content-band {
    position: relative;
    border: 1px solid rgba(164, 189, 217, 0.18);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(10, 18, 32, 0.92), rgba(5, 8, 18, 0.88));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.content-hero {
    overflow: hidden;
    padding: clamp(1.4rem, 4vw, 3rem);
}

.content-hero::before,
.route-hub::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5bd6ff, #f6c95f, transparent);
}

.content-hero h1,
.route-hub h2,
.content-band h2 {
    margin: 0;
    color: #f8fbff;
    font-size: clamp(2rem, 5vw, 4.3rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
}

.content-hero p,
.route-hub p,
.content-band p {
    color: rgba(237, 246, 255, 0.76);
    line-height: 1.7;
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: #f6c95f;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.route-hub {
    padding: clamp(1.15rem, 3vw, 2rem);
}

.breadcrumbs {
    color: rgba(237, 246, 255, 0.7);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #5bd6ff;
    text-decoration: none;
}

.route-intro {
    max-width: 70ch;
}

.route-grid,
.hub-grid,
.tool-grid,
.event-grid,
.species-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.route-card,
.hub-card,
.tool-card,
.event-card,
.species-profile-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1rem;
    border: 1px solid rgba(164, 189, 217, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: inherit;
    text-decoration: none;
}

.route-card:hover,
.tool-card:hover,
.event-card:hover,
.species-profile-card:hover {
    border-color: rgba(91, 214, 255, 0.48);
    transform: translateY(-2px);
}

.route-card strong,
.hub-card strong,
.tool-card strong,
.event-card strong,
.species-profile-card strong {
    color: #ffffff;
    font-size: 1.04rem;
}

.route-card span,
.tool-card span,
.event-card span,
.species-profile-card span {
    color: #5bd6ff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.content-band {
    padding: clamp(1rem, 3vw, 1.75rem);
}

.content-band h2 {
    font-size: clamp(1.45rem, 3vw, 2.4rem);
}

.link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.link-row a,
.route-card em {
    color: #f6c95f;
    font-style: normal;
    font-weight: 800;
}

.species-profile-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 6px;
}

.mini-stat {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.35rem 0.55rem;
    border: 1px solid rgba(246, 201, 95, 0.35);
    border-radius: 999px;
    color: #f6c95f;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-sleek .onboarding-panel,
.home-sleek .focus-section,
.home-sleek .species-section,
.home-sleek .hero-grid,
.home-sleek .feature-section,
.home-sleek .steps-section,
.home-sleek .community-section,
.home-sleek .timeline-section {
    display: none;
}

@media (max-width: 980px) {
    .route-grid,
    .hub-grid,
    .tool-grid,
    .event-grid,
    .species-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .route-grid,
    .hub-grid,
    .tool-grid,
    .event-grid,
    .species-showcase {
        grid-template-columns: 1fr;
    }

    .link-row {
        align-items: stretch;
        flex-direction: column;
    }
}
