:root {
    color-scheme: dark;
    --bg: #07080b;
    --bg-2: #11131a;
    --ink: #fffaf7;
    --muted: rgba(255, 250, 247, 0.72);
    --quiet: rgba(255, 250, 247, 0.54);
    --line: rgba(255, 255, 255, 0.14);
    --panel: rgba(18, 19, 27, 0.88);
    --panel-strong: rgba(21, 22, 31, 0.97);
    --violet: #8b5cf6;
    --violet-deep: #4c1d95;
    --mint: #5ee6c3;
    --gold: #e0b85c;
    --rose: #ff9bc8;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
    --font: Inter, Aptos, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    background: var(--bg);
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, #08090d 0%, #11131a 48%, #07080b 100%);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.22;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, #000, transparent 82%);
}

img {
    display: block;
    max-width: 100%;
}

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

button {
    border: 0;
    color: inherit;
    font: inherit;
}

:focus-visible {
    outline: 2px solid var(--mint);
    outline-offset: 4px;
}

.bellumi-dropbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1px;
    min-height: 38px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    background: #050609;
}

.bellumi-dropbar span {
    padding: 9px 14px;
    color: rgba(255, 250, 247, 0.76);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.bellumi-dropbar span:first-child {
    color: var(--mint);
}

.bellumi-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 70px;
    padding: 12px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid var(--line);
    background: rgba(7, 8, 11, 0.88);
    backdrop-filter: blur(18px);
}

.bellumi-brand,
.bellumi-nav nav {
    display: flex;
    align-items: center;
}

.bellumi-brand {
    gap: 11px;
    font-size: 1.04rem;
    font-weight: 950;
}

.bellumi-brand img {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 28px rgba(139, 92, 246, 0.34);
}

.bellumi-nav nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.bellumi-nav nav a {
    min-height: 36px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 8px 12px;
    color: rgba(255, 250, 247, 0.72);
    font-size: 0.84rem;
    font-weight: 900;
}

.bellumi-nav nav a:hover,
.bellumi-nav nav a:focus-visible {
    border-color: rgba(255, 255, 255, 0.24);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.bellumi-hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: clamp(540px, 68svh, 720px);
    padding: clamp(42px, 6vw, 76px) clamp(20px, 5vw, 82px);
    overflow: hidden;
    isolation: isolate;
}

.bellumi-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 8, 11, 0.98) 0%, rgba(7, 8, 11, 0.86) 38%, rgba(7, 8, 11, 0.28) 74%),
        linear-gradient(180deg, rgba(7, 8, 11, 0.06) 0%, rgba(7, 8, 11, 0.72) 100%);
}

.bellumi-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(94, 230, 195, 0.72), rgba(224, 184, 92, 0.42), transparent);
}

.bellumi-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bellumi-hero-copy {
    width: min(100%, 780px);
}

.bellumi-hero-badge {
    width: clamp(72px, 8vw, 108px);
    height: clamp(72px, 8vw, 108px);
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    box-shadow:
        0 0 36px rgba(139, 92, 246, 0.38),
        0 22px 52px rgba(0, 0, 0, 0.42);
}

.bellumi-kicker {
    margin: 0 0 12px;
    color: var(--mint);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bellumi-hero h1,
.bellumi-section-heading h2,
.bellumi-feature-copy h2,
.bellumi-pack-copy h2 {
    margin: 0;
    letter-spacing: 0;
    line-height: 0.96;
}

.bellumi-hero h1 {
    font-size: clamp(3.8rem, 10vw, 8.9rem);
    font-weight: 950;
    color: #fff;
    text-shadow:
        0 0 24px rgba(139, 92, 246, 0.28),
        0 15px 44px rgba(0, 0, 0, 0.42);
}

.bellumi-lead {
    max-width: 680px;
    margin: 20px 0 0;
    color: rgba(255, 250, 247, 0.86);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.bellumi-actions,
.bellumi-hero-offer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bellumi-actions {
    margin-top: 28px;
}

.bellumi-hero-offer {
    margin-top: 20px;
}

.bellumi-hero-offer span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 250, 247, 0.82);
    font-size: 0.84rem;
    font-weight: 850;
    backdrop-filter: blur(14px);
}

.bellumi-hero-offer strong {
    color: #fff;
}

.bellumi-button,
.bellumi-cart-button,
.bellumi-clear,
.bellumi-cart-qty button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 950;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.bellumi-button,
.bellumi-cart-button,
.bellumi-clear {
    min-height: 46px;
    border-radius: 999px;
    padding: 12px 18px;
}

.bellumi-button-primary,
.bellumi-cart-button {
    background: linear-gradient(135deg, var(--violet), var(--violet-deep));
    color: #fff;
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.28);
}

.bellumi-button-soft,
.bellumi-clear,
.bellumi-cart-qty button {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.bellumi-button:hover,
.bellumi-cart-button:hover,
.bellumi-clear:hover,
.bellumi-cart-qty button:hover {
    transform: translateY(-1px);
    border-color: rgba(94, 230, 195, 0.58);
}

.bellumi-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border-block: 1px solid var(--line);
    background: var(--line);
}

.bellumi-strip span {
    min-height: 68px;
    display: grid;
    place-items: center;
    padding: 16px;
    background: rgba(12, 13, 18, 0.96);
    color: rgba(255, 250, 247, 0.86);
    font-size: 0.86rem;
    font-weight: 950;
    text-align: center;
}

.bellumi-section {
    padding: clamp(52px, 7vw, 96px) clamp(20px, 5vw, 82px);
}

.bellumi-section-heading {
    max-width: 920px;
    margin-bottom: 30px;
}

.bellumi-section-heading p {
    max-width: 660px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.bellumi-section-heading h2,
.bellumi-feature-copy h2,
.bellumi-pack-copy h2 {
    max-width: 860px;
    color: #fff;
    font-size: clamp(2rem, 4.2vw, 4.25rem);
    font-weight: 950;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

.bellumi-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(340px, 0.9fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
    background:
        linear-gradient(90deg, rgba(94, 230, 195, 0.08), transparent 42%),
        #0a0b10;
}

.bellumi-feature-copy p,
.bellumi-pack-copy p {
    max-width: 610px;
    color: var(--muted);
    font-size: 1.08rem;
}

.bellumi-feature-copy .bellumi-button,
.bellumi-pack-copy .bellumi-button {
    margin-top: 16px;
}

.bellumi-feature-media {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.bellumi-feature-media img {
    aspect-ratio: 4 / 3;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.bellumi-feature-media span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    border-radius: 999px;
    padding: 10px 14px;
    background: rgba(7, 8, 11, 0.78);
    color: var(--gold);
    font-weight: 950;
    backdrop-filter: blur(14px);
}

.bellumi-shop {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
        var(--bg-2);
}

.bellumi-store-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
    gap: 24px;
    align-items: start;
}

.bellumi-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.bellumi-product,
.bellumi-cart,
.bellumi-universe-grid article,
.bellumi-asset-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.bellumi-product {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
}

.bellumi-product-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #151720;
}

.bellumi-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.bellumi-product:hover .bellumi-product-media img {
    transform: scale(1.025);
}

.bellumi-product-media span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(7, 8, 11, 0.76);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 950;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.bellumi-product-copy {
    flex: 1;
    padding: 18px 18px 0;
}

.bellumi-product-copy > p {
    margin: 0 0 8px;
    color: var(--mint);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
}

.bellumi-product-copy h3,
.bellumi-cart h2,
.bellumi-universe-grid h3 {
    margin: 0;
    color: #fff;
    line-height: 1.12;
}

.bellumi-product-copy h3 {
    font-size: clamp(1.16rem, 2vw, 1.42rem);
}

.bellumi-product-copy > span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
}

.bellumi-product-copy ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.bellumi-product-copy li {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 6px 9px;
    color: rgba(255, 250, 247, 0.72);
    font-size: 0.78rem;
    font-weight: 850;
}

.bellumi-product-row,
.bellumi-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.bellumi-product-row {
    padding: 18px;
}

.bellumi-product-row strong,
.bellumi-cart-total strong {
    color: var(--gold);
    white-space: nowrap;
}

.bellumi-cart {
    position: sticky;
    top: 90px;
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(94, 230, 195, 0.08), transparent 34%),
        var(--panel-strong);
}

.bellumi-cart-list {
    display: grid;
    gap: 12px;
    min-height: 120px;
    margin-top: 18px;
    color: var(--muted);
}

.bellumi-cart-empty {
    display: block;
    color: var(--quiet);
}

.bellumi-cart-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    padding-bottom: 12px;
}

.bellumi-cart-line strong,
.bellumi-cart-line span {
    min-width: 0;
}

.bellumi-cart-name {
    display: block;
    color: #fff;
    font-weight: 900;
}

.bellumi-cart-price {
    display: block;
    margin-top: 3px;
    color: var(--quiet);
    font-size: 0.88rem;
}

.bellumi-cart-qty {
    display: flex;
    align-items: center;
    gap: 7px;
}

.bellumi-cart-qty button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    padding: 0;
    line-height: 1;
}

.bellumi-cart-qty span {
    min-width: 24px;
    color: #fff;
    font-weight: 950;
    text-align: center;
}

.bellumi-cart-total {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 16px;
    margin-top: 18px;
}

.bellumi-cart .bellumi-button {
    width: 100%;
    margin-top: 18px;
}

.bellumi-clear {
    width: 100%;
    margin-top: 10px;
}

.bellumi-cart-note {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.bellumi-cart-note span {
    color: rgba(255, 250, 247, 0.62);
    font-size: 0.86rem;
    font-weight: 800;
}

.bellumi-universe {
    background: #08090d;
}

.bellumi-universe-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.bellumi-universe-grid article {
    padding: 24px;
}

.bellumi-universe-grid strong {
    color: var(--mint);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.bellumi-universe-grid h3 {
    margin-top: 10px;
}

.bellumi-universe-grid p {
    color: var(--muted);
}

.bellumi-assets {
    background:
        linear-gradient(180deg, rgba(94, 230, 195, 0.05), transparent),
        #0d0e14;
}

.bellumi-asset-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.bellumi-asset-card {
    display: block;
    overflow: hidden;
    background: #11131a;
}

.bellumi-asset-card img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    background: #fff;
}

.bellumi-asset-card span {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 13px 15px;
    color: #fff;
    font-weight: 950;
}

.bellumi-pack {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.9fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: center;
    background:
        linear-gradient(120deg, rgba(139, 92, 246, 0.1), transparent 36%),
        linear-gradient(270deg, rgba(224, 184, 92, 0.1), transparent 34%),
        #07080b;
}

.bellumi-pack-board {
    display: grid;
    grid-template-columns: 1.08fr 0.8fr;
    gap: 12px;
}

.bellumi-pack-board img {
    height: 100%;
    min-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    object-fit: cover;
    background: #fff;
    box-shadow: var(--shadow);
}

.bellumi-pack-board img:last-child {
    aspect-ratio: 1 / 1;
}

.bellumi-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 28px clamp(20px, 5vw, 82px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #050609;
    color: rgba(255, 255, 255, 0.72);
}

.bellumi-footer a:hover {
    color: #fff;
}

@media (max-width: 1180px) {
    .bellumi-feature,
    .bellumi-store-layout,
    .bellumi-pack {
        grid-template-columns: 1fr;
    }

    .bellumi-cart {
        position: static;
    }

    .bellumi-asset-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    html {
        scroll-padding-top: 150px;
    }

    .bellumi-hero {
        min-height: clamp(520px, 70svh, 680px);
    }

    .bellumi-hero::before {
        background:
            linear-gradient(90deg, rgba(7, 8, 11, 0.93), rgba(7, 8, 11, 0.58)),
            linear-gradient(180deg, rgba(7, 8, 11, 0.18) 0%, rgba(7, 8, 11, 0.82) 100%);
    }

    .bellumi-products,
    .bellumi-universe-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .bellumi-dropbar {
        justify-content: flex-start;
    }

    .bellumi-nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .bellumi-nav nav {
        justify-content: flex-start;
    }

    .bellumi-hero {
        padding-top: 42px;
    }

    .bellumi-hero h1 {
        font-size: clamp(3.25rem, 17vw, 4.8rem);
    }

    .bellumi-actions {
        flex-direction: column;
    }

    .bellumi-button {
        width: 100%;
    }

    .bellumi-hero-offer span,
    .bellumi-strip span {
        width: 100%;
    }

    .bellumi-strip,
    .bellumi-asset-grid {
        grid-template-columns: 1fr;
    }

    .bellumi-product-row {
        align-items: stretch;
        flex-direction: column;
    }

    .bellumi-cart-button {
        width: 100%;
    }

    .bellumi-cart-line {
        grid-template-columns: 1fr;
    }

    .bellumi-cart-qty {
        justify-content: space-between;
    }

    .bellumi-pack-board {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .bellumi-section,
    .bellumi-hero {
        padding-inline: 18px;
    }

    .bellumi-product-copy,
    .bellumi-product-row,
    .bellumi-cart {
        padding-inline: 15px;
    }
}
