.home-hero {
    min-height: 660px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: end;
    position: relative;
    overflow: hidden;
    padding: 80px max(24px, calc((100vw - 1400px) / 2)) 120px;
    background-image:
        linear-gradient(90deg, rgba(5,10,18,0.94) 0%, rgba(5,10,18,0.82) 52%, rgba(5,10,18,0.5) 100%),
        var(--hero-image);
    background-size: cover;
    background-position: center 28%;
}

.home-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(180deg, transparent, #0a0a0a);
    pointer-events: none;
}

.home-hero-inner,
.hero-profile-card {
    position: relative;
    z-index: 1;
}

.hero-badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 12px;
    color: #67e8f9;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 860px;
    margin: 0;
    color: #fff;
    font-size: 5.4rem;
    line-height: .95;
    letter-spacing: 0;
}

.home-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255,255,255,0.78);
    font-size: 1.18rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn-primary,
.btn-secondary,
.home-cta a,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 8px;
    font-weight: 850;
    text-decoration: none;
    transition: .22s ease;
}

.btn-primary,
.home-cta a {
    color: #041014;
    background: linear-gradient(135deg, #67e8f9, #34d399);
    box-shadow: 0 12px 34px rgba(52,211,153,0.18);
}

.btn-secondary,
.text-link {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.07);
}

.btn-primary:hover,
.btn-secondary:hover,
.home-cta a:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.hero-profile-card {
    align-self: end;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background: rgba(3,7,18,0.55);
    backdrop-filter: blur(12px);
}

.hero-profile-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.hero-profile-card div {
    padding: 14px 4px 2px;
}

.hero-profile-card span,
.about-note span,
.showcase-card span,
.blog-row span {
    display: block;
    color: #67e8f9;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-profile-card strong {
    display: block;
    margin-top: 6px;
    color: #fff;
    line-height: 1.4;
}

.home-shell {
    width: min(1400px, calc(100% - 48px));
    margin: -68px auto 0;
    position: relative;
    z-index: 2;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 70px;
}

.stat-card,
.about-band,
.focus-card,
.showcase-card,
.latest-panel,
.side-profile-panel,
.home-cta {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.045);
    backdrop-filter: blur(10px);
}

.stat-card {
    min-height: 128px;
    padding: 18px;
}

.stat-card i {
    color: #67e8f9;
    font-size: 1.3rem;
}

.stat-card span,
.stat-card strong {
    display: block;
}

.stat-card span {
    margin-top: 18px;
    color: rgba(255,255,255,0.62);
}

.stat-card strong {
    margin-top: 4px;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1.12;
}

.about-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
    padding: 30px;
    margin-bottom: 70px;
}

.about-copy h2,
.section-heading h2,
.home-cta h2,
.side-profile-panel h2 {
    margin: 0;
    color: #fff;
    font-size: 2.55rem;
    line-height: 1.08;
    letter-spacing: 0;
}

.about-copy p,
.section-heading p,
.home-cta p,
.focus-card p,
.showcase-card p,
.blog-row p,
.side-profile-panel p {
    margin: 14px 0 0;
    color: rgba(255,255,255,0.64);
    line-height: 1.72;
}

.about-note {
    padding: 22px;
    border: 1px solid rgba(103,232,249,0.22);
    border-radius: 8px;
    background: rgba(103,232,249,0.08);
}

.about-note strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    line-height: 1.55;
}

.about-note a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    margin-top: 18px;
    padding: 0 13px;
    border-radius: 8px;
    color: #041014;
    background: #67e8f9;
    font-weight: 900;
    text-decoration: none;
}

.section-block,
.content-band,
.home-cta {
    margin-top: 70px;
}

.section-heading {
    display: grid;
    gap: 8px;
    max-width: 830px;
    margin-bottom: 24px;
}

.section-heading.inline-heading {
    max-width: none;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.section-heading.compact {
    margin-bottom: 0;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.focus-card {
    min-height: 260px;
    padding: 20px;
}

.focus-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
    border-radius: 8px;
    color: #041014;
    background: #67e8f9;
}

.focus-card h3,
.showcase-card h3,
.blog-row h3 {
    margin: 0;
    color: #fff;
    line-height: 1.28;
    letter-spacing: 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.showcase-card {
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: .24s ease;
}

.showcase-card:hover,
.blog-row:hover,
.focus-card:hover {
    border-color: rgba(103,232,249,0.36);
    background: rgba(103,232,249,0.07);
    transform: translateY(-3px);
}

.showcase-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.showcase-card div {
    padding: 18px;
}

.showcase-card span,
.blog-row span {
    margin-bottom: 8px;
}

.content-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
    align-items: start;
}

.latest-panel,
.side-profile-panel {
    padding: 22px;
}

.blog-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.blog-row {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 130px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: inherit;
    background: rgba(255,255,255,0.032);
    text-decoration: none;
    transition: .24s ease;
}

.blog-row img {
    width: 150px;
    height: 104px;
    object-fit: cover;
    border-radius: 8px;
}

.side-profile-panel {
    position: sticky;
    top: 112px;
}

.side-profile-panel ul {
    display: grid;
    gap: 10px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.side-profile-panel li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.72);
    line-height: 1.45;
}

.side-profile-panel li i {
    margin-top: 3px;
    color: #67e8f9;
}

.empty-note {
    padding: 26px;
    border: 1px dashed rgba(255,255,255,0.16);
    border-radius: 8px;
    color: rgba(255,255,255,0.58);
}

.home-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 30px;
}

.home-cta p {
    max-width: 760px;
}

.home-cta a {
    min-width: 180px;
}

@media (max-width: 1180px) {
    .home-hero {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

    .home-hero h1 {
        font-size: 4.35rem;
    }

    .about-copy h2,
    .section-heading h2,
    .home-cta h2,
    .side-profile-panel h2 {
        font-size: 2.25rem;
    }

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

    .about-band,
    .content-band,
    .home-cta {
        grid-template-columns: 1fr;
    }

    .side-profile-panel {
        position: static;
    }
}

@media (max-width: 840px) {
    .home-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        align-items: end;
        gap: 22px;
        padding: 72px 14px 104px;
        background-image:
            linear-gradient(180deg, rgba(5,10,18,0.36) 0%, rgba(5,10,18,0.92) 65%),
            var(--hero-image);
    }

    .home-hero h1 {
        font-size: 3.2rem;
    }

    .home-hero p {
        font-size: 1.05rem;
    }

    .hero-profile-card {
        max-width: 320px;
    }

    .home-shell {
        width: min(100% - 28px, 1400px);
        margin-top: -54px;
    }

    .stats-strip,
    .focus-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .section-block,
    .content-band,
    .home-cta {
        margin-top: 48px;
    }

    .about-band {
        margin-bottom: 48px;
    }

    .about-band,
    .latest-panel,
    .side-profile-panel,
    .home-cta {
        padding: 20px;
    }

    .section-heading.inline-heading {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 560px) {
    .home-hero h1 {
        font-size: 2.55rem;
    }

    .hero-actions a,
    .home-cta a,
    .text-link {
        width: 100%;
    }

    .stat-card {
        min-height: 112px;
        padding: 15px;
    }

    .stat-card strong {
        font-size: 1.5rem;
    }

    .about-copy h2,
    .section-heading h2,
    .home-cta h2,
    .side-profile-panel h2 {
        font-size: 1.9rem;
    }

    .blog-row {
        grid-template-columns: 1fr;
    }

    .blog-row img {
        width: 100%;
        height: 180px;
    }
}
