:root {
    --bg-black: #060606;
    --text-white: #ffffff;
    --header-gray-1: #4b4b4b;
    --header-gray-2: #6b6b6b;
    --header-gray-3: #3e3e3e;
    --header-gray-4: #575757;
    --btn-black: #000000;
    --hero-shadow: rgba(0, 0, 0, 0.55);
    --split-panel-height: 430px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100%;
    background: var(--bg-black);
    color: var(--text-white);
    font-family: "Orbitron", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 94px;
    padding: 14px 26px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: linear-gradient(
        100deg,
        var(--header-gray-1) 0%,
        var(--header-gray-2) 32%,
        var(--header-gray-3) 68%,
        var(--header-gray-4) 100%
    );
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
    min-width: 280px;
    cursor: pointer;
}

.brand-logo {
    width: 164px;
    height: 62px;
    object-fit: contain;
    object-position: left center;
}

.brand-name {
    color: var(--text-white);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
}

.main-nav a {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: opacity 0.18s ease;
}

.main-nav a:hover {
    opacity: 0.72;
}

.cart-btn {
    position: relative;
    z-index: 2;
    position: relative;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.24);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.cart-count {
    position: absolute;
    right: -4px;
    top: -5px;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    padding: 0 5px;
    background: #ef2f2f;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    font-weight: 700;
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 94px);
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 22%, rgba(0, 0, 0, 0.6) 60%),
        linear-gradient(130deg, #101010 0%, #1b1b1b 40%, #090909 100%);
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        url("./assets/Front-cover.png"),
        url("./assets/hero-placeholder.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.42;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.48) 45%,
        rgba(0, 0, 0, 0.68) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 24px;
}

.hero-content h1 {
    color: var(--text-white);
    font-size: clamp(28px, 3.1vw, 42px);
    line-height: 1.3;
    text-shadow: 0 6px 18px var(--hero-shadow);
    margin-bottom: 28px;
}

.learn-more-btn {
    min-width: 156px;
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 10px;
    background: var(--btn-black);
    color: var(--text-white);
    font-family: "Orbitron", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: transform 0.15s ease, background-color 0.2s ease;
}

.learn-more-btn:hover {
    transform: translateY(-1px);
    background: #111111;
}

.section-divider {
    height: 18px;
    background: linear-gradient(
        100deg,
        var(--header-gray-1) 0%,
        var(--header-gray-2) 32%,
        var(--header-gray-3) 68%,
        var(--header-gray-4) 100%
    );
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(34px, 42px) minmax(0, 2fr);
    align-items: stretch;
    gap: 20px;
    padding: 36px 26px 44px;
    background: #090909;
}

.split-left,
.split-right {
    display: grid;
    gap: 12px;
}

.split-feature-image {
    position: relative;
    min-height: var(--split-panel-height);
    border-radius: 12px;
    overflow: hidden;
    background-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.42) 38%,
            rgba(0, 0, 0, 0.65) 100%
        ),
        url("./assets/GodWithUs.png");
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.split-left-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: clamp(18px, 3vw, 30px);
}

.faith-title {
    margin-top: 4%;
    align-self: center;
    text-transform: uppercase;
    font-size: clamp(26px, 3.1vw, 44px);
    letter-spacing: 2px;
    text-align: center;
    color: #f4f7ff;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.left-bottom-slogan {
    margin-top: auto;
    align-self: flex-start;
    max-width: 16ch;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: clamp(22px, 2.1vw, 34px);
    line-height: 1.08;
    letter-spacing: 1.2px;
    color: #f2f6ff;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.72);
}

.discover-btn {
    align-self: flex-end;
    min-width: 190px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(12, 20, 34, 0.82);
    color: var(--text-white);
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: transform 0.15s ease, background-color 0.2s ease;
}

.discover-btn:hover {
    transform: translateY(-1px);
    background: rgba(28, 40, 62, 0.92);
}

.split-offers-image {
    position: relative;
    min-height: var(--split-panel-height);
    border-radius: 12px;
    overflow: hidden;
    background-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.44) 55%,
            rgba(0, 0, 0, 0.66) 100%
        ),
        url("./assets/UniqueOffers.png");
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.split-right-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 14px;
    padding: clamp(18px, 2.5vw, 30px);
}

.offers-title {
    max-width: 13ch;
    text-align: right;
    text-transform: uppercase;
    font-size: clamp(22px, 2.2vw, 34px);
    line-height: 1.12;
    letter-spacing: 1px;
    color: #f4f7ff;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.68);
}

.see-more-btn {
    min-width: 150px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(12, 20, 34, 0.82);
    color: var(--text-white);
    font-family: "Orbitron", sans-serif;
    font-size: 13px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    transition: transform 0.15s ease, background-color 0.2s ease;
}

.see-more-btn:hover {
    transform: translateY(-1px);
    background: rgba(28, 40, 62, 0.92);
}

.split-vertical-divider {
    width: 100%;
    min-height: var(--split-panel-height);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(
        to bottom,
        rgba(90, 90, 90, 0.75),
        rgba(44, 44, 44, 0.85)
    );
    overflow: hidden;
    position: relative;
}

.divider-marquee {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.divider-marquee-inner {
    position: absolute;
    left: 50%;
    top: 0;
    height: 200%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: divider-marquee-up 34s linear infinite;
}

.divider-block {
    flex: 0 0 50%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-line {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: #ffffff;
    font-family: "Orbitron", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.8px;
    white-space: nowrap;
    line-height: 1.15;
}

@keyframes divider-marquee-up {
    0% {
        transform: translate(-50%, 0%);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

.movement-section {
    position: relative;
    min-height: clamp(520px, 86vh, 980px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 22px clamp(16px, 3vw, 34px) 28px;
    background-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.16) 0%,
            rgba(0, 0, 0, 0.48) 60%,
            rgba(0, 0, 0, 0.74) 100%
        ),
        url("./assets/US-Capitol-Modified.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #090909;
}

.movement-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center 22%, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0) 46%);
}

.movement-title {
    position: absolute;
    top: clamp(30px, 7.5vh, 90px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-transform: uppercase;
    font-size: clamp(40px, 6.4vw, 106px);
    letter-spacing: 2.4px;
    color: #f4f7ff;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.62);
    text-align: center;
}

.movement-btn {
    position: relative;
    z-index: 1;
    min-width: 220px;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(10, 14, 25, 0.84);
    color: #ffffff;
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    transition: transform 0.15s ease, background-color 0.2s ease;
}

.movement-btn:hover {
    transform: translateY(-1px);
    background: rgba(28, 40, 62, 0.92);
}

.products-header {
    min-height: clamp(140px, 21vh, 240px);
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #474747 0%, #3e3e3e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.products-header h2 {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: clamp(32px, 5vw, 64px);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.products-marquee-section {
    background: #111111;
    padding: 26px 0 34px;
    overflow: hidden;
}

.products-marquee {
    display: flex;
    width: max-content;
    animation: products-marquee-right 42s linear infinite;
}

.products-track {
    display: flex;
    gap: 16px;
    padding: 0 8px;
}

.product-card {
    width: clamp(190px, 16vw, 260px);
    min-height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: linear-gradient(180deg, #2b2b2b 0%, #1f1f1f 100%);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-image-slot {
    flex: 1;
    min-height: 175px;
    border-radius: 10px;
    border: 1px dashed rgba(255, 255, 255, 0.36);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04);
}

.product-btn {
    min-height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(10, 14, 25, 0.84);
    color: #ffffff;
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition: transform 0.15s ease, background-color 0.2s ease;
}

.product-btn:hover {
    transform: translateY(-1px);
    background: rgba(28, 40, 62, 0.92);
}

@keyframes products-marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

.contact-split-section {
    display: grid;
    grid-template-columns: minmax(0, 3fr) 2px minmax(0, 2fr);
    gap: 20px;
    padding: 34px 26px 40px;
    background: #0b0b0b;
}

.community-placeholder {
    min-height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: linear-gradient(140deg, #1f1f1f 0%, #121212 100%);
    padding: 26px;
    display: grid;
    align-content: center;
    gap: 12px;
}

.community-placeholder h3 {
    font-size: clamp(26px, 3vw, 42px);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.community-placeholder p {
    max-width: 50ch;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.community-see-more-btn {
    margin-top: 8px;
    min-height: 42px;
    max-width: 200px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(10, 14, 25, 0.84);
    color: #ffffff;
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.contact-vertical-divider {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.42),
        rgba(255, 255, 255, 0.14)
    );
}

.contact-form-wrap {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: linear-gradient(140deg, #202020 0%, #141414 100%);
    padding: 24px;
    display: grid;
    gap: 14px;
    align-content: start;
}

.contact-form-wrap h3 {
    font-size: clamp(20px, 2.2vw, 32px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form {
    display: grid;
    gap: 10px;
}

.contact-form label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    font-family: "Orbitron", sans-serif;
    font-size: 13px;
    padding: 10px 12px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-submit-btn {
    margin-top: 6px;
    min-height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(10, 14, 25, 0.84);
    color: #ffffff;
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.site-footer {
    background: #101010;
    padding: 34px 26px 42px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
}

.footer-block {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: #171717;
    padding: 18px;
    display: grid;
    gap: 8px;
}

.footer-block h4 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-block p,
.footer-block a {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.policy-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.policy-buttons button {
    min-height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(10, 14, 25, 0.75);
    color: #ffffff;
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 0 8px;
}

@media (max-width: 1020px) {
    .site-header {
        flex-wrap: wrap;
        gap: 14px;
    }

    .main-nav {
        position: static;
        transform: none;
        width: 100%;
        justify-content: center;
        gap: 18px;
        padding: 2px 0 0 0;
        white-space: normal;
    }

    .split-section {
        padding: 30px 18px 36px;
    }

    .split-feature-image,
    .split-offers-image,
    .split-vertical-divider {
        min-height: 390px;
    }

    .movement-section {
        min-height: clamp(460px, 70vh, 760px);
    }

    .products-marquee {
        animation-duration: 36s;
    }

    .contact-split-section {
        padding: 28px 18px 34px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        padding: 28px 18px 34px;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 12px 14px;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .brand-name {
        font-size: 19px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .hero-section {
        min-height: calc(100vh - 126px);
    }

    .section-divider {
        height: 14px;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .split-vertical-divider {
        width: 100%;
        height: 2px;
        min-height: 52px;
    }

    .split-feature-image,
    .split-offers-image {
        min-height: 350px;
    }

    .divider-line {
        writing-mode: horizontal-tb;
        font-size: 13px;
        transform: none;
    }

    .left-bottom-slogan {
        max-width: 100%;
    }

    .discover-btn,
    .see-more-btn {
        min-width: 100%;
    }

    .movement-btn {
        min-width: 100%;
    }

    .movement-section {
        min-height: 420px;
    }

    .movement-title {
        top: 18px;
        font-size: clamp(34px, 10vw, 56px);
    }

    .products-marquee {
        animation-duration: 28s;
    }

    .product-card {
        width: 74vw;
    }

    .contact-split-section {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-vertical-divider {
        width: 100%;
        height: 2px;
    }

    .policy-buttons {
        grid-template-columns: 1fr;
    }
}
