.hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 72px;
}

.intro-slider-shell {
    position: relative;
    min-height: 70vh;
    min-height: 70svh;
    padding: 0;
    width: 100%;
}

.intro-slider {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    min-height: 70svh;
    background: #fff;
    width: 100%;
    touch-action: pan-y;
    cursor: grab;
}

.intro-slider.is-dragging {
    cursor: grabbing;
}

.intro-slider-decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.intro-circle-round {
    position: absolute;
}

.intro-circle-round-1 {
    left: 14%;
    top: 7%;
}

.intro-circle-round-2 {
    right: -2%;
    top: 58%;
}

.intro-circle-round-3 {
    left: -2%;
    top: 74%;
}

.intro-circle-wrap {
    position: relative;
    width: 760px;
    height: 760px;
}

.intro-circle {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(0, 108, 172, 0.15);
}

.intro-circle::after {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    border-radius: 999px;
    background: #0078bd;
    box-shadow: 0 0 22px rgba(0, 120, 189, 0.7);
}

.intro-circle-1,
.intro-circle-4,
.intro-circle-7 {
    animation: project-theme-spin-forward 40s linear infinite;
}

.intro-circle-2,
.intro-circle-5,
.intro-circle-8 {
    inset: 72px;
    animation: project-theme-spin-backward 60s linear infinite;
}

.intro-circle-3,
.intro-circle-6,
.intro-circle-9 {
    inset: 146px;
    animation: project-theme-spin-forward 50s linear infinite;
}

@keyframes project-theme-spin-forward {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes project-theme-spin-backward {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.intro-slider-track {
    position: relative;
    min-height: inherit;
    z-index: 2;
}

.intro-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 420ms ease, visibility 420ms ease;
    display: flex;
    align-items: flex-end;
}

.intro-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.intro-slide-media {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.03);
    will-change: transform;
}

.intro-slider.is-swipe-anim .intro-slide.is-active .intro-slide-media {
    animation: project-theme-slide-pan-rtl 420ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes project-theme-slide-pan-rtl {
    from {
        transform: translateX(6%) scale(1.06);
    }

    to {
        transform: translateX(-2%) scale(1.04);
    }
}

.intro-slide-backdrop {
    position: absolute;
    inset: 0;
    background: transparent;
}

.intro-slide.has-image .intro-slide-backdrop {
    background: transparent;
}

.intro-slide-backdrop-2 {
    background: transparent;
}

.intro-slide-backdrop-3 {
    background: transparent;
}

.intro-slide-inner {
    position: relative;
    z-index: 3;
    width: min(1360px, calc(100% - 24px));
    margin: 0 auto;
    padding-top: 0;
}

.intro-copy {
    width: min(640px, 100%);
    margin-top: 24px;
    margin-bottom: clamp(20px, 4vh, 42px);
    margin-left: 0;
    padding: 30px 34px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.intro-kicker {
    display: none;
}

.intro-copy h1 {
    max-width: none;
    margin: 0;
    font-family: "Arial Narrow", "Segoe UI", sans-serif;
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    line-height: 1.1;
    color: #fff;
    font-weight: 700;
}

.intro-summary {
    max-width: none;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.95rem, 1.15vw, 1.06rem);
    line-height: 1.45;
}

.intro-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.intro-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 52px;
    padding: 0 58px 0 24px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 0.96rem;
    text-transform: lowercase;
    letter-spacing: 0.02em;
    position: relative;
}

.intro-link::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    border-top: 2px solid currentcolor;
    border-right: 2px solid currentcolor;
    transform: rotate(45deg);
}

.intro-link:hover {
    background: #fff;
    color: #000;
}

.intro-slider-dots {
    display: none;
}

.intro-accent {
    display: none;
}

.hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 7vw, 6.2rem);
}

.hero-text {
    max-width: 58ch;
    margin-top: 24px;
    font-size: 1.08rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 38px;
}

.hero-metrics li {
    padding: 18px 18px 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(19, 32, 45, 0.06);
    border-radius: var(--radius-md);
}

.hero-metrics strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.hero-metrics span {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.hero-panel {
    position: relative;
    min-height: 580px;
    display: grid;
    place-items: center;
}

.hero-card {
    position: relative;
    z-index: 2;
    width: min(100%, 470px);
    padding: 34px;
    border-radius: var(--radius-lg);
    background: linear-gradient(
        180deg,
        rgba(17, 38, 59, 0.97),
        rgba(20, 46, 68, 0.92)
    );
    color: #fff;
    box-shadow: var(--shadow);
}

.hero-card h2,
.hero-card p,
.hero-card .card-label {
    color: #fff;
}

.hero-card h2 {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.hero-card p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.hero-orbit {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(230, 99, 47, 0.2);
}

.orbit-large {
    width: 520px;
    height: 520px;
    background: radial-gradient(
        circle at center,
        rgba(201, 216, 232, 0.45),
        rgba(201, 216, 232, 0) 64%
    );
}

.orbit-small {
    width: 260px;
    height: 260px;
    top: 40px;
    right: 10px;
    background: radial-gradient(
        circle at center,
        rgba(230, 99, 47, 0.22),
        rgba(230, 99, 47, 0) 70%
    );
}

@media (max-width: 860px) {
    .intro-slider-shell {
        min-height: 90vh;
        min-height: 90svh;
    }

    .intro-slider,
    .intro-slide-inner {
        min-height: 90vh;
        min-height: 90svh;
    }

    .intro-slide-media {
        inset: 0;
    }

    .intro-slide-inner {
        padding-top: 0;
    }

    .intro-copy {
        width: min(86%, 560px);
        margin-top: 18px;
        margin-bottom: clamp(16px, 3.6vh, 30px);
        margin-left: 20px;
        padding: 24px;
    }

    .intro-copy h1 {
        font-size: clamp(1.65rem, 4.4vw, 2.25rem);
    }

    .intro-summary {
        font-size: 0.95rem;
    }

    .intro-link {
        min-height: 48px;
        padding: 0 52px 0 18px;
        font-size: 0.92rem;
    }

    .intro-circle-round-1 {
        left: 18%;
        top: 0;
    }

    .intro-circle-round-2 {
        right: -16%;
        top: 63%;
    }

    .intro-circle-round-3 {
        display: none;
    }

    .intro-circle-wrap {
        width: 520px;
        height: 520px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .hero-section {
        padding-top: 0;
    }

    .intro-slider-shell {
        min-height: 90vh;
        min-height: 90svh;
    }

    .intro-slider,
    .intro-slide-inner {
        min-height: 90vh;
        min-height: 90svh;
    }

    .intro-slide-media {
        inset: 0;
    }

    .intro-slide-inner {
        width: min(1360px, calc(100% - 16px));
        padding-top: 0;
    }

    .intro-copy {
        width: calc(100% - 24px);
        margin-top: 12px;
        margin-bottom: clamp(10px, 3vh, 20px);
        margin-left: 12px;
        padding: 18px 16px;
    }

    .intro-copy h1 {
        font-size: clamp(1.4rem, 7.6vw, 1.95rem);
    }

    .intro-summary {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .intro-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .intro-link {
        width: 100%;
        min-height: 44px;
        padding: 0 46px 0 16px;
        font-size: 0.88rem;
    }

    .intro-link::after {
        right: 16px;
    }

    .intro-circle-round-1,
    .intro-circle-round-2,
    .intro-circle-round-3 {
        display: none;
    }
}