.swiper-slide {
    transition: transform 8s ease;
}

.swiper-slide-active {
    transform: scale(1.035);
}

.swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
            90deg,
            rgba(6, 12, 20, .72) 0%,
            rgba(6, 12, 20, .48) 38%,
            rgba(6, 12, 20, .16) 70%,
            rgba(6, 12, 20, .04) 100%
    );
}

.swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
            to top,
            var(--sfpd-navy-1) 0%,
            rgba(8, 17, 29, .35) 22%,
            transparent 45%
    );
}

.swiper-slide-caption {
    position: relative;
    z-index: 2;
}

.hero-description {
    max-width: 620px;
    margin-top: 10px;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 15px;
        line-height: 1.6;
    }
}

.equal-width {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 255px;
    text-align: center;
}

.sfpd-features {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, var(--sfpd-navy-1) 0%, var(--sfpd-navy-2) 100%);
    overflow: hidden;
}

.sfpd-features::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(20, 241, 217, .08), transparent 45%);
    pointer-events: none;
}

.sfpd-features::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(58, 140, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 140, 255, 0.045) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(circle at 50% 0%, black 20%, transparent 70%);
    mask-image: radial-gradient(circle at 50% 0%, black 20%, transparent 70%);
    opacity: .5;
    pointer-events: none;
}

.sfpd-features .container {
    position: relative;
    z-index: 1;
}

.feature-card {
    position: relative;
    height: 100%;
    padding: 45px 34px;
    border-radius: 24px;
    background: var(--sfpd-glass);
    border: 1px solid var(--sfpd-glass-border);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(20, 241, 217, .55), transparent);
    opacity: 0;
    transition: opacity .35s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(20, 241, 217, .22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(20, 241, 217, .18), rgba(20, 241, 217, .05));
    border: 1px solid rgba(20, 241, 217, .14);
    color: var(--sfpd-teal);
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(20, 241, 217, .08);
    transition: transform .35s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-3px) scale(1.05);
}

.feature-card h4 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}

.feature-card p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
    font-size: 16px;
}

.launcher-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.launcher-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: -14%;
    bottom: -14%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.launcher-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
            90deg,
            rgba(8, 18, 33, .88) 0%,
            rgba(8, 18, 33, .65) 35%,
            rgba(8, 18, 33, .20) 60%,
            rgba(8, 18, 33, .02) 100%
    );
}

.launcher-hero::before,
.launcher-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 110px;
    z-index: 2;
    pointer-events: none;
}

.launcher-hero::before {
    top: 0;
    background: linear-gradient(to bottom, var(--sfpd-navy-2), transparent);
}

.launcher-hero::after {
    bottom: 0;
    background: linear-gradient(to top, var(--sfpd-navy-1), transparent);
}

.launcher-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 90px 0;
}

.launcher-content {
    position: relative;
    max-width: 620px;
    color: #fff;
    will-change: transform;
}

.launcher-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    border-radius: 40px;
    background: rgb(255 91 137);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    font-weight: 600;
}

.launcher-content h2 {
    line-height: 1.05;
    margin-bottom: 30px;
    font-weight: 900;
    color: #fff;
}

.launcher-content h2 span {
    color: #ff6f91;
}

.launcher-content p {
    font-size: 23px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .93);
    margin-bottom: 45px;
}

.launcher-buttons {
    display: flex;
    gap: 22px;
    align-items: center;
}

.launcher-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    border-radius: 60px;
    background: var(--sfpd-pink);
    color: #fff;
    font-weight: 700;
    transition: .35s;
}

.launcher-download:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 91, 137, .35);
}

.launcher-video {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #132238;
    font-size: 28px;
    transition: .35s;
}

.launcher-video:hover {
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .launcher-hero {
        min-height: 700px;
    }

    .launcher-content h2 {
        font-size: 42px;
    }

    .launcher-content p {
        font-size: 18px;
    }
}

.mission-section {
    position: relative;
    padding: 110px 0 100px;
    background: linear-gradient(180deg, var(--sfpd-navy-1) 0%, var(--sfpd-navy-2) 100%);
    overflow: hidden;
}

.mission-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(20, 241, 217, .07), transparent 45%);
    pointer-events: none;
}

.mission-section .container {
    position: relative;
    z-index: 1;
}

.mission-text {
    color: var(--sfpd-text);
    font-size: 17px;
    line-height: 1.85;
}

.mission-list {
    margin-top: 30px;
}

.mission-list li {
    position: relative;
    padding-left: 40px;
    color: var(--sfpd-text-strong);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

.mission-list li + li {
    margin-top: 14px;
}

.mission-list li::before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--sfpd-teal);
    background: var(--sfpd-teal-soft);
    border: 1px solid rgba(20, 241, 217, .25);
    border-radius: 50%;
}

.mission-cta {
    margin-top: 44px;
}

.mission-section .box-counter {
    height: 100%;
    padding: 36px 20px;
    border-radius: 20px;
    background: var(--sfpd-glass);
    border: 1px solid var(--sfpd-glass-border);
    color: #fff;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.mission-section .box-counter:hover {
    transform: translateY(-6px);
    border-color: rgba(20, 241, 217, .25);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

.mission-section .box-counter-main,
.mission-section .box-counter:hover .box-counter-main {
    color: #ffffff;
}

.mission-section .box-counter-main > * {
    background: linear-gradient(135deg, var(--sfpd-teal), #3a8cff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-section .box-counter-title {
    color: rgba(255, 255, 255, .60);
}

.stat-row {
    row-gap: 24px;
}

.stat-row > [class*="col-"] {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .mission-section .box-counter {
        min-height: 190px;
        padding: 28px 16px;
    }

    .mission-section .box-counter-main {
        font-size: 42px;
    }

    .mission-section .box-counter-title {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .stat-row > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.countdown-section .parallax-content {
    background: linear-gradient(
            180deg,
            var(--sfpd-navy-2) 0%,
            rgba(8, 17, 29, .55) 22%,
            rgba(8, 17, 29, .55) 78%,
            var(--sfpd-navy-1) 100%
    );
}

.countdown-section .countdown-circle-fg {
    stroke: var(--sfpd-teal);
}

.news-section {
    position: relative;
    padding: 100px 0 110px;
    background: linear-gradient(180deg, var(--sfpd-navy-1) 0%, var(--sfpd-navy-3) 100%);
    overflow: hidden;
}

.news-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 10%, rgba(20, 241, 217, .06), transparent 45%);
    pointer-events: none;
}

.news-section .container {
    position: relative;
    z-index: 1;
}

.news-section .box-image-small {
    margin-bottom: 26px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--sfpd-glass);
    border: 1px solid var(--sfpd-glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.news-section .box-image-small:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 241, 217, .22);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .40);
}

.news-section .item-image {
    min-height: 240px;
    border-radius: 0;
    transition: transform 6s ease;
    transform-origin: center;
}

.news-section .box-image-small:hover .item-image {
    transform: scale(1.06);
}

.news-section .item-body {
    padding: 26px 30px;
}

.news-section .news-title a {
    color: #ffffff;
}

.news-section .news-title a:hover {
    color: var(--sfpd-teal);
}

.news-section .news-date {
    color: rgba(255, 255, 255, .45);
}

.news-section .news-description {
    color: rgba(255, 255, 255, .72);
}

.news-section .btn-full-width {
    background: linear-gradient(135deg, #0ea393, var(--sfpd-teal));
    color: #06241f;
    font-weight: 700;
}

.news-section .btn-full-width::after {
    background: linear-gradient(135deg, var(--sfpd-teal), #7df5e7);
}

.news-section .btn-full-width:hover {
    color: #06241f;
}

.news-section .pinned-news .box-image-small {
    border-left: 3px solid var(--sfpd-teal);
}

.pinned-icon {
    color: var(--sfpd-teal);
}

.news-more {
    margin-top: 30px;
    text-align: center;
}

@media (prefers-reduced-motion: reduce) {
    .launcher-bg,
    .launcher-content {
        transform: none !important;
    }

    .swiper-slide,
    .news-section .item-image {
        transition: none;
    }
}

.news-section .item-body {
    color: #fff;
}

.news-section .item-body * {
    color: #fff !important;
}

.news-section .item-body a {
    color: #27d7ff !important;
}

.news-section .item-body strong {
    color: #fff !important;
}

.news-section .item-body li {
    color: #fff !important;
}

.news-section .item-body p {
    color: #fff !important;
}

.news-title,
.news-title a {
    color: #fff !important;
}

.news-title a:hover {
    color: #27d7ff !important;
}

@media (max-width: 991px) {
    .box-image-small-left {
        display: block;
    }

    .box-image-small-left .item-image {
        width: 100%;
        min-height: 260px;
    }

    .box-image-small-left .item-body {
        width: 100%;
        padding: 25px;
    }
}

.news-card {
    display: flex;
    align-items: stretch;
    margin-bottom: 35px;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .03)
    );
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    transition: .35s;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 241, 217, .35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .45);
}

.news-card-image {
    flex: 0 0 420px;
    min-height: 290px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    background-color: #182532;
    position: relative;
    transition: 8s;
}

.news-card:hover .news-card-image {
    transform: scale(1.03);
}

.news-card-content {
    flex: 1;
    padding: 38px;
    display: flex;
    flex-direction: column;
}

.news-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.news-top h3 {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
}

.news-top a {
    color: #fff;
}

.news-top a:hover {
    color: #14f1d9;
}

.news-date {
    color: rgba(255, 255, 255, .45);
    white-space: nowrap;
}

.news-text {
    flex: 1;
    font-size: 17px;
    line-height: 1.8;
}

.news-text,
.news-text * {
    color: #fff !important;
}

.news-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #14efd7;
    color: #000000;
    padding: 8px 8px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .news-card {
        display: block;
    }

    .news-card-image {
        width: 100%;
        min-height: 240px;
    }

    .news-card-content {
        padding: 25px;
    }

    .news-top {
        display: block;
    }

    .news-top h3 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    }