:root {
    --ship-hero-navy: #071d2b;
    --ship-hero-blue: #1a7890;
    --ship-hero-aqua: #7cc7c9;
    --ship-hero-gold: #d5a860;
    --ship-hero-white: #ffffff;
    --ship-hero-border: rgba(255, 255, 255, 0.18);
}

.ship-hero-slider,
.ship-hero-slider * {
    box-sizing: border-box;
}

.ship-hero-slider {
    position: relative;
    min-height: 850px;
    overflow: hidden;
    color: var(--ship-hero-white);
    background: var(--ship-hero-navy);
}

.ship-hero-slides {
    position: absolute;
    inset: 0;
}

.ship-hero-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.ship-hero-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.ship-hero-background {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.035);
    transition: transform 8s ease;
}

.ship-hero-slide.is-active .ship-hero-background {
    transform: scale(1);
}

.ship-hero-slide::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -300px;
    width: 640px;
    height: 640px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 85px rgba(255, 255, 255, 0.025),
        0 0 0 170px rgba(255, 255, 255, 0.015);
    pointer-events: none;
}

.ship-hero-container {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 40px));
    height: 100%;
    margin: 0 auto;
}

.ship-hero-content {
    max-width: 880px;
    padding-top: 205px;
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.7s ease 0.2s,
        transform 0.7s ease 0.2s;
}

.ship-hero-slide.is-active .ship-hero-content {
    opacity: 1;
    transform: translateY(0);
}

.ship-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    color: var(--ship-hero-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.ship-hero-eyebrow::before {
    content: "";
    width: 37px;
    height: 1px;
    background: currentColor;
}

.ship-hero-content h1 {
    max-width: 920px;
    margin: 0;
    color: var(--ship-hero-white);
    font-family: Georgia, serif;
    font-size: clamp(50px, 7vw, 92px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.ship-hero-description {
    max-width: 700px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.75;
}

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

.ship-hero-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.ship-hero-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.ship-hero-button-primary {
    color: var(--ship-hero-navy);
    background: var(--ship-hero-gold);
}

.ship-hero-button-primary:hover {
    color: var(--ship-hero-navy);
    background: #e2b875;
    box-shadow: 0 12px 30px rgba(213, 168, 96, 0.27);
}

.ship-hero-button-outline {
    border-color: rgba(255, 255, 255, 0.34);
    color: var(--ship-hero-white);
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(9px);
}

.ship-hero-button-outline:hover {
    color: var(--ship-hero-navy);
    background: var(--ship-hero-white);
}

.ship-hero-stats {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 47px;
    left: 0;
    pointer-events: none;
}

.ship-hero-stats-grid {
    max-width: 735px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--ship-hero-border);
}

.ship-hero-stat {
    padding: 23px 25px 0 0;
}

.ship-hero-stat + .ship-hero-stat {
    padding-left: 28px;
    border-left: 1px solid var(--ship-hero-border);
}

.ship-hero-stat strong {
    display: block;
    color: var(--ship-hero-white);
    font-family: Georgia, serif;
    font-size: 33px;
    font-weight: 400;
    line-height: 1.1;
}

.ship-hero-stat span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.ship-hero-controls {
    position: absolute;
    z-index: 6;
    right: max(32px, calc((100vw - 1180px) / 2));
    bottom: 54px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.ship-hero-arrow {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: var(--ship-hero-white);
    background: rgba(7, 29, 43, 0.25);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.ship-hero-arrow:hover {
    transform: translateY(-2px);
    border-color: var(--ship-hero-gold);
    color: var(--ship-hero-navy);
    background: var(--ship-hero-gold);
}

.ship-hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ship-hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.ship-hero-dot.is-active {
    width: 30px;
    background: var(--ship-hero-gold);
}

.ship-hero-scroll {
    position: absolute;
    z-index: 6;
    top: 50%;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
}

.ship-hero-scroll:hover {
    color: var(--ship-hero-gold);
    text-decoration: none;
}

@media (max-width: 1000px) {
    .ship-hero-slider {
        min-height: 790px;
    }

    .ship-hero-content {
        max-width: 780px;
        padding-top: 180px;
    }

    .ship-hero-controls {
        right: 24px;
    }

    .ship-hero-scroll {
        display: none;
    }
}

@media (max-width: 720px) {
    .ship-hero-slider {
        min-height: 760px;
    }

    .ship-hero-container {
        width: min(100% - 24px, 1180px);
    }

    .ship-hero-content {
        padding-top: 145px;
    }

    .ship-hero-content h1 {
        font-size: 33px;
    }

    .ship-hero-description {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.65;
    }

    .ship-hero-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 29px;
    }

    .ship-hero-button {
        width: 100%;
    }

    .ship-hero-stats {
        bottom: 98px;
    }

    .ship-hero-stats-grid {
        max-width: 280px;
        grid-template-columns: 1fr;
    }

    .ship-hero-stat,
    .ship-hero-stat + .ship-hero-stat {
        padding: 10px 0;
        border-left: 0;
        border-bottom: 1px solid var(--ship-hero-border);
    }

    .ship-hero-stat strong {
        font-size: 25px;
    }

    .ship-hero-controls {
        right: 12px;
        bottom: 28px;
        left: 12px;
        justify-content: center;
    }

    .ship-hero-arrow {
        width: 42px;
        height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ship-hero-slide,
    .ship-hero-background,
    .ship-hero-content {
        transition: none;
    }
}