    :root {
        --psw-ink: #1D213E;
        --psw-paper: #fbfbfb;
        --psw-sea: #009A5E;
        --psw-sea-light: #e8f6f5;
        --psw-line: #e6e6e6;
        --psw-shadow-soft: 0 10px 20px 0 rgba(137, 162, 165, .16);
        --psw-shadow-hover: 0 22px 40px 0 rgba(13, 16, 33, .20);
        --psw-radius: 12px;
    }

    .vessel-section .btn-primary {
        gap: 24px;
        min-width: 197px;
        background: var(--Button-VistaGradient, linear-gradient(96deg, #009a5e 0%, #79b9a2 100.81%));
        color: #fff;
        border-radius: 32px !important;
        min-width: 150px;
        padding: 8px 8px 8px 16px !important;
        font-size: 14px !important;
        line-height: 22px !important;
        font-weight: 700 !important;
        border: 1px solid #009a5e;
        height: 72px;
    }

    .section h2 {
        margin: 0 0 20px;
        font-size: 50px;
        line-height: 64px;
        font-weight: 700;
        color: #1D213E;
    }

    .section h2 span {
        display: block;
        text-transform: capitalize;
        color: #009A5E;
        font-size: 32px;
        line-height: 32px;
        font-weight: 700;
    }

    .vessel-section {
        padding: 60px 0px;
    }

    /* ---- Track / slider shell ---------------------------------------------- */
    

    /* Progressive-enhancement fallback before Slick boots / if JS fails */
    .psw-vessel-track:not(.slick-initialized) {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .psw-vessel-track:not(.slick-initialized) .psw-vcard {
        flex: 0 0 300px;
        scroll-snap-align: start;
    }

    .psw-vessel-track .slick-track {
        display: flex;
    }

    .psw-vessel-track .slick-slide {
        height: auto;
        margin: 20px 5px;
    }


    /* ---- Card ---------------------------------------------------------------- */
    .psw-vcard {
        height: 100%;
        padding: 14px;
        margin: 0 8px;
        border-radius: var(--psw-radius);
        border: 1px solid var(--psw-sea);
        background: var(--psw-paper);
        box-shadow: var(--psw-shadow-soft);
        transition: transform .35s cubic-bezier(.22, .9, .32, 1), box-shadow .35s ease, border-color .35s ease;
        will-change: transform;
    }

    .psw-vcard:hover,
    .psw-vcard:focus-within {
        transform: translateY(-14px);
        border-color: var(--psw-link);
    }

    .psw-vcard:hover .psw-vcard__stat span {
        color: #1d213e;
    }

    .psw-vcard:hover .psw-vcard__stat {
        color: #009e63;
    }

    /* image + overlay */
    .psw-vcard__media {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        margin: 0 0 14px;
        aspect-ratio: 4/3;
        background: #dfe3e6;
    }

    .psw-vcard__photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .6s cubic-bezier(.22, .9, .32, 1);
    }

    .psw-vcard:hover .psw-vcard__photo {
        transform: scale(1.1) rotate(.3deg);
    }

  

    /* IMO + Flag -- parallel overlay bar, top of image (signature element) */
    .psw-vcard__overlay {
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 6px 8px;
        border-radius: 30px;
        background: rgb(36 40 74);
        border: 1px solid rgba(255, 255, 255, .35);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        transform: translateY(-6px);
        opacity: 0;
        animation: pswBadgeIn .5s ease forwards;
        animation-delay: .1s;
    }

    @keyframes pswBadgeIn {
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .psw-vcard__imo {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: .02em;
        white-space: nowrap;
    }

    .psw-vcard__anchor-ico {
        width: 13px;
        height: 13px;
        flex: none;
        opacity: .9;
    }

    .psw-vcard__imo-label {
        font-weight: 600;
    }

    .psw-vcard__imo-num {
        font-weight: 700;
    }

    .psw-vcard__flag {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 19px;
        border-radius: 4px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .6);
        flex: none;
        background: #fff;
    }

    .psw-vcard__flag img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .6s ease;
    }

    .psw-vcard:hover .psw-vcard__flag img {
        transform: rotateY(360deg);
    }

    /* ship-type ribbon, bottom-left of image */
    .psw-vcard__tag {
        position: absolute;
        left: 10px;
        bottom: 10px;
        z-index: 2;
        font-size: 12px;
        line-height: 1;
        font-weight: 700;
        color: #fff;
        background: var(--Button-VistaGradient, linear-gradient(96deg, #009a5e 0%, #79b9a2 100.81%));
        padding: 6px 12px;
        border-radius: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
        transition: background .3s ease, color .3s ease;
    }

    .psw-vcard:hover .psw-vcard__tag {
        background: var(--psw-sea);
        color: #fff;
    }

    /* body */
    .psw-vcard__body {
        padding: 0;
    }

    .psw-vcard__row {
        gap: 10px;
        padding: 12px 0 0;
        border-top: 1px solid var(--psw-line);
    }

    .psw-vcard__stat {
        display: flex;
        justify-content: space-between;
        gap: 2px;
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: var(--psw-ink);
        text-align: left;
        margin-bottom: 12px;
    }

    .psw-vcard__stat span {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: #009e63;
    }





    /* entrance animation for active slides */
    .psw-vessel-track .slick-slide.slick-active .psw-vcard {
        animation: pswCardIn .5s ease both;
    }

    @keyframes pswCardIn {
        from {
            opacity: 0;
            transform: translateY(18px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    .psw-vessel-track .psw-arrow.slick-arrow {
        display: flex !important;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--psw-ink);
        align-items: center;
        justify-content: center;
        top: 38%;
        z-index: 3;
        transition: background .25s ease, transform .25s ease;
    }

    .psw-vessel-track .psw-arrow.slick-arrow:before {
        content: none !important;
    }

    .psw-vessel-track .psw-arrow svg {
        width: 18px;
        height: 18px;
        fill: #fff;
    }

    .psw-vessel-track .psw-arrow.slick-arrow:hover {
        background: var(--psw-sea);
        transform: translateY(-2px) scale(1.05);
    }

    .psw-vessel-track .psw-arrow.slick-prev {
        left: -6px;
    }

    .psw-vessel-track .psw-arrow.slick-next {
        right: -6px;
    }

    /* ---- Dots (mobile) -------------------------------------------------------- */
    .psw-vessel-track .slick-dots {
        bottom: 8px;
    }

    .psw-vessel-track .slick-dots li {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }

    .psw-vessel-track .slick-dots li button {
        width: 8px;
        height: 8px;
        padding: 0;
    }

    .psw-vessel-track .slick-dots li button:before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #c7cbd6;
        opacity: 1;
    }

    .psw-vessel-track .slick-dots li.slick-active button:before {
        background: var(--psw-sea);
        width: 20px;
        border-radius: 6px;
        transition: width .25s ease;
    }

    /* ---- Accessibility: respect reduced motion -------------------------------- */
    @media (prefers-reduced-motion: reduce) {

        .psw-vcard,
        .psw-vcard__photo,
        .psw-vcard__overlay,
        .psw-vcard__flag img,
        .psw-vessel-track .slick-slide.slick-active .psw-vcard,
        .psw-vcard__cta svg {
            animation: none !important;
            transition: none !important;
        }
    }


    .psw-vessel-track .psw-arrow:focus-visible {
        outline: 2px solid var(--psw-sea-light);
        outline-offset: 2px;
    }

    @media (max-width:768px) {
        .psw-vessel-track .psw-arrow.slick-prev {
            left: 4px;
        }

        .psw-vessel-track .psw-arrow.slick-next {
            right: 4px;
        }
    }