/* ================================================================
   PROJECTKART — HERO
   Full-bleed workspace hero matching the reference homepage
================================================================ */

.hero-section {
    position: relative;
    min-height: calc(100vh - var(--navbar-height));
    padding: 28px 0 92px;
    overflow: hidden;
    background: #05070b;
}

.hero-section__background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-section__background-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.88;
}

.hero-section__background-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            #05070b 0%,
            rgba(5, 7, 11, 0.98) 28%,
            rgba(5, 7, 11, 0.72) 48%,
            rgba(5, 7, 11, 0.22) 72%,
            rgba(5, 7, 11, 0.08) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 7, 11, 0.18) 0%,
            transparent 18%,
            rgba(5, 7, 11, 0.55) 100%
        );
}

.hero-section__container {
    position: relative;
    z-index: 2;
    width: min(100% - 76px, var(--container-width));
    margin: 0 auto;
    min-height: 640px;
    display: grid;
    grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 40px;
}

.hero-content {
    max-width: 560px;
    padding: 40px 0 24px;
}

.hero-eyebrow,
.eyebrow.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 8px 14px 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(8, 12, 20, 0.55);
    color: #8eb4ff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.eyebrow__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 10px rgba(40, 120, 255, 0.8);
}

.hero-title {
    margin: 0;
    color: #fff;
    font-size: clamp(4.2rem, 7vw, 6.6rem);
    font-weight: 800;
    letter-spacing: -0.07em;
    line-height: 0.9;
}

.hero-title span {
    display: block;
}

.hero-title__accent {
    color: var(--color-primary);
}

.hero-lead {
    max-width: 460px;
    margin: 28px 0 0;
    color: rgba(229, 236, 247, 0.92);
    font-size: 18px;
    line-height: 1.55;
}

.hero-description {
    max-width: 470px;
    margin: 14px 0 0;
    color: #8d99ae;
    font-size: 15px;
    line-height: 1.7;
}

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

.hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
    color: #7d889c;
    font-size: 13px;
}

.hero-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-meta__status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22d39a;
    box-shadow: 0 0 10px rgba(34, 211, 154, 0.7);
}

.hero-meta__divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.14);
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.hero-visual__technical-label {
    position: absolute;
    top: 18px;
    left: 50%;
    z-index: 4;
    transform: translateX(-8%);
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-image-frame {
    position: relative;
    width: min(100%, 620px);
    margin-left: auto;
    aspect-ratio: 4 / 3.15;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: #0b1018;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.hero-image-frame__image-wrap,
.hero-image-frame img,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    display: block;
    transform: scale(1.02);
    transition: transform 900ms var(--ease-out);
}

.hero-image-frame:hover .hero-image {
    transform: scale(1.07);
}

.hero-image-frame__gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(5, 7, 11, 0.08) 30%,
            rgba(5, 7, 11, 0.72) 100%
        );
    pointer-events: none;
}

.hero-image-frame__caption {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 2;
    max-width: 70%;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.hero-ready-indicator {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(34, 211, 154, 0.28);
    border-radius: 999px;
    background: rgba(8, 18, 16, 0.72);
    color: #d8ffef;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    backdrop-filter: blur(10px);
}

.hero-ready-indicator span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22d39a;
    box-shadow: 0 0 8px rgba(34, 211, 154, 0.8);
}

.hero-signal-card {
    position: absolute;
    left: -18px;
    bottom: 78px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(320px, 78%);
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(12, 17, 26, 0.86);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
}

.hero-signal-card__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: rgba(40, 120, 255, 0.16);
    color: #8eb4ff;
}

.hero-signal-card__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.hero-signal-card__label {
    display: block;
    margin-bottom: 4px;
    color: #8eb4ff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.hero-signal-card strong {
    color: #fff;
    font-size: 16px;
    font-weight: 650;
    letter-spacing: -0.03em;
}

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 6;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(10, 14, 20, 0.82);
    color: #c9d4e5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1100px) {
    .hero-section__container {
        grid-template-columns: 1fr;
        min-height: auto;
        width: min(100% - 40px, var(--container-width));
    }

    .hero-section__background-image {
        width: 100%;
        opacity: 0.4;
    }

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

    .hero-image-frame {
        width: 100%;
        margin: 0;
    }

    .hero-signal-card {
        left: 16px;
        bottom: 74px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 3.4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-signal-card {
        width: calc(100% - 32px);
    }
}
