:root {
    --bg: #050405;
    --bg-soft: #090708;
    --panel: #0d0a0b;
    --panel-2: #120d0f;
    --panel-hover: #171013;
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #f8f5f6;
    --muted: #928b8e;
    --muted-light: #bbb4b7;
    --burgundy: #731126;
    --burgundy-deep: #3f0714;
    --accent: #d01843;
    --accent-bright: #f02752;
    --accent-soft: rgba(208, 24, 67, 0.14);
    --danger: #ef476f;
    --success: #58d68d;
    --radius: 18px;
    --shadow-accent: 0 0 26px rgba(208, 24, 67, 0.34);
    --container: 1440px;
}

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

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.is-cart-open {
    overflow: hidden;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

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

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

svg {
    display: block;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

[hidden] {
    display: none !important;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--text);
    color: #080608;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

/* Promo and navigation */
.promo-bar {
    position: relative;
    z-index: 51;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(90deg, #5f0b1d, #a11131 48%, #5f0b1d);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .035em;
    line-height: 34px;
    text-transform: uppercase;
    white-space: nowrap;
}

.promo-track {
    display: flex;
    width: max-content;
    min-width: 100%;
    align-items: center;
    justify-content: space-around;
    animation: promo-scroll 32s linear infinite;
}

.promo-track span {
    padding-inline: 24px;
}

.promo-track i {
    color: #ff7896;
    font-style: normal;
}

@keyframes promo-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-25%); }
}

.store-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 88px;
    border-bottom: 1px solid transparent;
    background: rgba(5, 4, 5, .84);
    backdrop-filter: blur(18px);
    transition: border-color .2s ease, background .2s ease;
}

.store-header.is-scrolled {
    border-bottom-color: var(--line);
    background: rgba(5, 4, 5, .95);
}

.store-header-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: min(calc(100% - 48px), 1680px);
    height: 100%;
    margin-inline: auto;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 11px;
}

.brand-icon {
    display: grid;
    width: 42px;
    height: 42px;
    overflow: hidden;
    place-items: center;
    border: 1px solid rgba(208, 24, 67, .35);
    border-radius: 12px;
    background: #10070a;
    box-shadow: inset 0 0 18px rgba(208, 24, 67, .08);
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy strong {
    font-size: 19px;
    font-weight: 900;
    letter-spacing: .08em;
}

.brand-copy small {
    margin-top: 7px;
    color: var(--accent-bright);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .25em;
}

.pill-nav {
    display: flex;
    padding: 7px;
    align-items: center;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(18, 16, 17, .94);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .28);
}

.pill-nav a,
.nav-release {
    position: relative;
    padding: 10px 15px;
    border-radius: 10px;
    color: #8f898b;
    font-size: 13px;
    font-weight: 650;
    line-height: 1;
    transition: color .2s ease, background .2s ease;
}

.pill-nav a:hover,
.pill-nav a.is-active {
    color: var(--text);
}

.pill-nav a.is-active::after {
    position: absolute;
    right: 15px;
    bottom: 1px;
    left: 15px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent-bright);
    box-shadow: 0 0 12px rgba(240, 39, 82, .75);
    content: "";
}

.nav-release {
    margin-left: -8px;
    padding: 8px 11px;
    background: #2b2829;
    color: #f0edef;
    font-size: 10px;
    white-space: nowrap;
}

.header-actions {
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 10px;
}

.sign-in-button,
.admin-shortcut,
.user-link,
.cart-button {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #100d0e;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.sign-in-button,
.admin-shortcut {
    display: inline-flex;
    padding: 0 17px;
    align-items: center;
    gap: 7px;
}

.sign-in-button {
    border-color: rgba(208, 24, 67, .4);
    background: var(--accent);
    box-shadow: var(--shadow-accent);
}

.admin-shortcut {
    color: #ff6689;
}

.user-link {
    display: flex;
    padding: 4px 13px 4px 5px;
    align-items: center;
    gap: 8px;
}

.user-link span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: var(--burgundy);
    font-weight: 800;
}

.cart-button {
    display: flex;
    padding: 0 10px 0 14px;
    align-items: center;
    gap: 8px;
}

.cart-button svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.cart-button b {
    display: grid;
    min-width: 23px;
    height: 23px;
    padding-inline: 5px;
    place-items: center;
    border-radius: 7px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
}

.sign-in-button:hover,
.admin-shortcut:hover,
.user-link:hover,
.cart-button:hover {
    border-color: rgba(240, 39, 82, .55);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 43px;
    height: 43px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--panel);
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: var(--text);
}

/* Buttons */
.button,
.btn {
    display: inline-flex;
    min-height: 50px;
    padding: 0 23px;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    text-align: center;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover,
.btn:hover {
    transform: translateY(-2px);
}

.button-primary,
.btn-primary {
    border-color: #e42b51;
    background: linear-gradient(135deg, var(--accent-bright), #a81030);
    color: #fff;
    box-shadow: 0 8px 28px rgba(208, 24, 67, .3), inset 0 1px rgba(255, 255, 255, .16);
}

.button-primary:hover,
.btn-primary:hover {
    box-shadow: 0 12px 34px rgba(208, 24, 67, .48), inset 0 1px rgba(255, 255, 255, .16);
}

.button-secondary,
.btn-secondary {
    border-color: var(--line-strong);
    background: rgba(17, 14, 15, .88);
    color: var(--text);
}

.button-secondary:hover,
.btn-secondary:hover {
    border-color: rgba(240, 39, 82, .55);
    background: var(--panel-hover);
}

.button-light {
    background: #fff;
    color: #210711;
}

.button-block,
.btn-block {
    width: 100%;
}

/* Home hero, modeled on the supplied store reference */
.home-hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 50% 12%, rgba(137, 13, 43, .22), transparent 36%),
        radial-gradient(circle at 50% 78%, rgba(85, 8, 27, .18), transparent 38%),
        #050405;
}

.hero-grid-bg,
.catalog-hero::before,
.faq-section::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(208, 24, 67, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(208, 24, 67, .045) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 92%);
}

.hero-grid-bg::after {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 10%, #050405 76%);
    content: "";
}

.hero-art {
    position: absolute;
    top: -70px;
    left: 50%;
    width: min(580px, 48vw);
    opacity: .28;
    filter: saturate(1.12) contrast(1.05);
    transform: translateX(-50%);
    -webkit-mask-image: linear-gradient(to bottom, #000 20%, transparent 88%);
    mask-image: linear-gradient(to bottom, #000 20%, transparent 88%);
}

.hero-art img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 680px;
    padding: 120px 0 110px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-pill,
.catalog-pill {
    display: inline-flex;
    padding: 7px 13px;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(19, 14, 16, .86);
    color: var(--muted-light);
    font-size: 12px;
    font-weight: 650;
}

.hero-pill {
    margin-bottom: 24px;
    color: #e4dadd;
}

.hero-pill b {
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(208, 24, 67, .14);
    color: #ff557b;
    font-size: 11px;
}

.hero-content h1 {
    max-width: 1060px;
    margin-bottom: 22px;
    font-size: clamp(52px, 6vw, 92px);
    font-weight: 850;
    letter-spacing: -.065em;
    line-height: 1.05;
}

.hero-content h1 em {
    color: #fff;
    font-style: normal;
}

.hero-content h1 em::after {
    display: block;
    width: 42%;
    height: 5px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 26px rgba(240, 39, 82, .55);
    content: "";
}

.hero-content > p {
    max-width: 700px;
    margin-bottom: 30px;
    color: var(--muted-light);
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.benefit-strip {
    border-bottom: 1px solid var(--line);
    background: #080708;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.benefit-grid article {
    display: flex;
    min-height: 130px;
    padding: 28px 38px;
    align-items: center;
    gap: 18px;
    border-right: 1px solid var(--line);
}

.benefit-grid article:first-child {
    border-left: 1px solid var(--line);
}

.benefit-grid article > div {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(208, 24, 67, .3);
    border-radius: 13px;
    background: rgba(89, 8, 28, .24);
    color: var(--accent-bright);
    font-size: 24px;
}

.benefit-grid span {
    display: grid;
    gap: 4px;
}

.benefit-grid strong {
    font-size: 15px;
}

.benefit-grid small {
    color: var(--muted);
    font-size: 12px;
}

/* Store catalog and cards */
.store-section,
.catalog-section {
    padding: 100px 0 120px;
    background: var(--bg);
}

.section-heading {
    margin-bottom: 48px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading > span {
    display: block;
    margin-bottom: 6px;
    color: var(--accent-bright);
    font-size: 27px;
}

.section-heading h2 {
    margin-bottom: 8px;
    font-size: clamp(34px, 4vw, 50px);
    letter-spacing: -.04em;
    line-height: 1.1;
}

.section-heading p {
    margin-bottom: 0;
    color: var(--muted);
}

.store-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.store-product-grid.is-two-products {
    max-width: 1040px;
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-product-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: #0f0d0e;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .16);
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.store-product-card:hover {
    border-color: rgba(208, 24, 67, .45);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .34), 0 0 28px rgba(108, 12, 35, .11);
    transform: translateY(-5px);
}

.store-product-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid var(--line);
    background: #161214;
}

.store-product-image::after {
    position: absolute;
    inset: auto 0 0;
    height: 30%;
    background: linear-gradient(transparent, rgba(11, 8, 9, .65));
    content: "";
}

.store-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.store-product-card:hover .store-product-image img {
    transform: scale(1.035);
}

.store-product-image > span {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(121, 13, 39, .92);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0,0,0,.35);
}

.store-product-content {
    display: flex;
    height: 100%;
    padding: 27px;
    flex-direction: column;
}

.store-product-content > small {
    margin-bottom: 8px;
    color: var(--accent-bright);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.store-product-content h3 {
    margin-bottom: 11px;
    font-size: 20px;
    letter-spacing: -.025em;
}

.store-product-content > p {
    display: -webkit-box;
    min-height: 52px;
    margin-bottom: 17px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-chips {
    display: flex;
    min-height: 33px;
    margin-bottom: 21px;
    flex-wrap: wrap;
    gap: 8px;
}

.product-chips span {
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #131112;
    color: #c9c2c5;
    font-size: 11px;
}

.product-chips span::first-letter {
    color: var(--accent-bright);
}

.product-price {
    margin-top: auto;
    margin-bottom: 15px;
    color: #f03b61;
    font-size: 19px;
    font-weight: 850;
}

.quick-buy-form .button {
    min-height: 52px;
}

.section-button-row {
    display: flex;
    margin-top: 36px;
    justify-content: center;
}

.empty-products {
    padding: 48px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    color: var(--muted);
    text-align: center;
}

.catalog-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 56px;
    background:
        radial-gradient(circle at 50% 0, rgba(119, 12, 38, .18), transparent 46%),
        #050405;
    text-align: center;
}

.catalog-hero .container {
    position: relative;
    z-index: 1;
}

.catalog-pill {
    margin-bottom: 19px;
}

.catalog-hero h1 {
    margin-bottom: 10px;
    font-size: clamp(42px, 5vw, 66px);
    letter-spacing: -.05em;
}

.catalog-hero h1 i {
    color: var(--accent-bright);
    font-style: normal;
}

.catalog-hero p {
    margin-bottom: 33px;
    color: var(--muted);
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.category-filters button {
    min-width: 82px;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #111011;
    color: #aaa4a6;
    font-size: 12px;
    font-weight: 700;
}

.category-filters button:hover,
.category-filters button.is-active {
    border-color: #b11639;
    background: linear-gradient(135deg, #d31b46, #8f0f2c);
    color: #fff;
    box-shadow: 0 0 18px rgba(208, 24, 67, .3);
}

.catalog-section {
    padding-top: 0;
}

.catalog-search {
    display: flex;
    height: 58px;
    margin-bottom: 36px;
    padding: 0 18px;
    align-items: center;
    gap: 13px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: #111011;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.catalog-search:focus-within {
    border-color: rgba(208, 24, 67, .62);
    box-shadow: 0 0 0 3px rgba(208, 24, 67, .08);
}

.catalog-search span {
    color: var(--accent-bright);
    font-size: 20px;
}

.catalog-search input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
}

.catalog-search input::placeholder {
    color: #716c6e;
}

/* Product details */
.product-detail-section {
    min-height: 720px;
    padding: 65px 0 120px;
    background:
        radial-gradient(circle at 76% 8%, rgba(108, 8, 33, .2), transparent 35%),
        linear-gradient(rgba(208, 24, 67, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(208, 24, 67, .03) 1px, transparent 1px),
        var(--bg);
    background-size: auto, 48px 48px, 48px 48px, auto;
}

.product-back {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.product-back:hover {
    color: var(--accent-bright);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
    align-items: start;
    gap: 52px;
}

.product-detail-media {
    position: sticky;
    top: 118px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    background: var(--panel);
    box-shadow: 0 30px 80px rgba(0,0,0,.34);
}

.product-detail-media::after {
    position: absolute;
    inset: auto 0 0;
    height: 28%;
    background: linear-gradient(transparent, rgba(7,5,6,.72));
    content: "";
}

.product-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-media > span {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: rgba(120,13,39,.94);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-detail-copy {
    padding: 15px 0;
}

.product-detail-copy h1 {
    margin: 9px 0 16px;
    font-size: clamp(44px, 5vw, 70px);
    letter-spacing: -.055em;
    line-height: 1.03;
}

.product-lead {
    margin-bottom: 22px;
    color: #d0c7ca;
    font-size: 17px;
    line-height: 1.7;
}

.product-description {
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.product-feature-list {
    display: grid;
    margin: 28px 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    list-style: none;
}

.product-feature-list li {
    display: flex;
    min-height: 44px;
    padding: 9px 12px;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(17,13,15,.82);
    color: #c8c0c3;
    font-size: 12px;
}

.product-feature-list li span {
    color: var(--accent-bright);
}

.product-purchase {
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(208,24,67,.32);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(208,24,67,.11), rgba(14,10,12,.96));
}

.product-purchase > div {
    display: grid;
    gap: 3px;
}

.product-purchase small {
    color: var(--muted);
    font-size: 9px;
    text-transform: uppercase;
}

.product-purchase strong {
    color: var(--accent-bright);
    font-size: 25px;
}

.product-assurance {
    display: flex;
    margin-top: 15px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 15px;
    color: #746e70;
    font-size: 9px;
}

.product-assurance a {
    color: #d54a69;
}

/* Community, Discord and FAQ */
.community-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background:
        radial-gradient(circle at 50% 100%, rgba(107, 9, 33, .18), transparent 42%),
        #070607;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.community-grid article {
    display: grid;
    min-height: 190px;
    padding: 25px;
    place-content: center;
    border-right: 1px solid var(--line);
    text-align: center;
}

.community-grid article:last-child {
    border-right: 0;
}

.community-grid strong {
    margin-bottom: 15px;
    color: var(--accent-bright);
    font-size: clamp(58px, 6vw, 94px);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: 1;
    text-shadow: 0 0 35px rgba(208, 24, 67, .22);
}

.community-grid span {
    max-width: 210px;
    margin-inline: auto;
    color: var(--muted);
    font-size: 13px;
}

.live-note {
    display: flex;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
    gap: 9px;
    color: #777174;
    font-size: 11px;
}

.live-note i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-bright);
    box-shadow: 0 0 10px rgba(240, 39, 82, .8);
}

.discord-section {
    padding: 100px 0;
}

.discord-card {
    position: relative;
    display: flex;
    min-height: 280px;
    overflow: hidden;
    padding: 54px 60px;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border: 1px solid rgba(240, 65, 101, .3);
    border-radius: 24px;
    background:
        linear-gradient(100deg, rgba(80, 5, 22, .96), rgba(132, 13, 42, .9)),
        url('/assets/images/vlo-banner.jpg') center/cover;
    box-shadow: 0 30px 80px rgba(45, 2, 13, .3);
}

.discord-card::after {
    position: absolute;
    top: -110px;
    right: 7%;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    content: "";
}

.discord-card > * {
    position: relative;
    z-index: 1;
}

.discord-card span,
.section-kicker {
    color: #ff93aa;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .18em;
}

.discord-card h2 {
    margin: 7px 0 8px;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -.045em;
}

.discord-card p {
    max-width: 650px;
    margin-bottom: 0;
    color: #d7c5cb;
}

.faq-section {
    position: relative;
    padding: 100px 0 130px;
    overflow: hidden;
    border-top: 1px solid var(--line);
    background: #070607;
}

.faq-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 80px;
}

.faq-layout h2 {
    margin: 10px 0 12px;
    font-size: clamp(36px, 4.5vw, 58px);
    letter-spacing: -.05em;
    line-height: 1.08;
}

.faq-layout > div:first-child p {
    color: var(--muted);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    min-height: 78px;
    padding: 20px 4px;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary i {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.faq-list summary i::before,
.faq-list summary i::after {
    position: absolute;
    top: 9px;
    left: 3px;
    width: 14px;
    height: 2px;
    background: var(--accent-bright);
    content: "";
    transition: transform .2s ease;
}

.faq-list summary i::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
    transform: rotate(0);
}

.faq-list details p {
    max-width: 700px;
    padding: 0 36px 25px 4px;
    color: var(--muted);
}

/* Authentication and account */
.auth-wrap,
.status-wrap {
    position: relative;
    display: grid;
    min-height: calc(100vh - 122px);
    padding: 80px 24px 110px;
    place-items: center;
    background:
        radial-gradient(circle at 50% 0, rgba(111, 9, 35, .2), transparent 42%),
        linear-gradient(rgba(208, 24, 67, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(208, 24, 67, .035) 1px, transparent 1px);
    background-color: var(--bg);
    background-size: auto, 48px 48px, 48px 48px;
}

.auth-card,
.status-card {
    width: min(100%, 560px);
    padding: 42px;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    background: rgba(14, 11, 12, .96);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .42);
}

.eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--accent-bright);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.auth-title,
.auth-card > h1,
.status-card h1 {
    margin-bottom: 10px;
    font-size: clamp(32px, 5vw, 44px);
    letter-spacing: -.045em;
    line-height: 1.1;
}

.auth-sub,
.auth-card > p,
.status-card > p {
    margin-bottom: 28px;
    color: var(--muted);
}

.field {
    display: grid;
    margin-bottom: 18px;
    gap: 7px;
}

.field > span {
    color: #d6d0d2;
    font-size: 12px;
    font-weight: 700;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    min-height: 49px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    outline: 0;
    background: #090708;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: rgba(240, 39, 82, .65);
    box-shadow: 0 0 0 3px rgba(208, 24, 67, .1);
}

.field input::placeholder {
    color: #5f5a5c;
}

.alert {
    margin-bottom: 22px;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 12px;
}

.alert p:last-child {
    margin-bottom: 0;
}

.alert-error {
    border-color: rgba(239, 71, 111, .35);
    background: rgba(239, 71, 111, .08);
    color: #ffb2c4;
}

.auth-alt {
    margin: 23px 0 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.auth-alt a {
    color: #ff5e82;
    font-weight: 700;
}

.section.account {
    padding-top: 80px;
    padding-bottom: 120px;
}

.account-head {
    display: flex;
    margin-bottom: 36px;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
}

.section-title {
    margin-bottom: 8px;
    font-size: clamp(36px, 5vw, 58px);
    letter-spacing: -.05em;
    line-height: 1.08;
}

.section-sub,
.muted {
    color: var(--muted);
}

.account-grid {
    display: grid;
    margin-bottom: 22px;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.info-card,
.table-card {
    padding: 28px;
}

.info-card h3,
.table-card h3 {
    margin-bottom: 18px;
    font-size: 18px;
}

.info-list {
    margin: 0;
}

.info-list div {
    display: flex;
    padding: 12px 0;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
}

.info-list dt {
    color: var(--muted);
}

.info-list dd {
    margin: 0;
    text-align: right;
}

code {
    padding: 2px 6px;
    border-radius: 5px;
    background: #1c1518;
    color: #ff7998;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: .9em;
}

.table-scroll {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.data-table th,
.data-table td {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.data-table th {
    color: #d5cfd1;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.data-table .ua {
    min-width: 260px;
    color: var(--muted);
}

.badge {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 750;
}

.badge-ok {
    background: rgba(88, 214, 141, .1);
    color: #79e8a6;
}

.badge-fail {
    background: rgba(239, 71, 111, .1);
    color: #ff7898;
}

/* Checkout status */
.status-card {
    text-align: center;
}

.status-icon {
    display: grid;
    width: 66px;
    height: 66px;
    margin: 0 auto 25px;
    place-items: center;
    border: 1px solid rgba(208, 24, 67, .38);
    border-radius: 50%;
    background: rgba(208, 24, 67, .12);
    color: var(--accent-bright);
    font-size: 28px;
    font-weight: 800;
}

.status-icon-success {
    border-color: rgba(88, 214, 141, .35);
    background: rgba(88, 214, 141, .08);
    color: #6ce29b;
}

.status-icon svg {
    width: 30px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.setup-note {
    display: grid;
    margin: 25px 0;
    padding: 16px;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #090708;
    color: var(--muted);
    font-size: 12px;
    text-align: left;
}

.setup-note strong {
    color: var(--text);
}

.status-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Cart */
.cart-backdrop {
    position: fixed;
    z-index: 79;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: opacity .25s ease;
}

.cart-backdrop.is-visible {
    opacity: 1;
}

.cart-drawer {
    position: fixed;
    z-index: 80;
    top: 0;
    right: 0;
    display: flex;
    width: min(440px, 100%);
    height: 100dvh;
    padding: 25px;
    flex-direction: column;
    border-left: 1px solid var(--line-strong);
    background: #090708;
    box-shadow: -30px 0 80px rgba(0,0,0,.45);
    transform: translateX(105%);
    transition: transform .28s ease;
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.cart-head {
    display: flex;
    padding-bottom: 20px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.cart-head small {
    color: var(--accent-bright);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.cart-head h2 {
    margin: 2px 0 0;
    font-size: 28px;
}

.cart-head button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #111011;
    font-size: 24px;
}

.cart-items {
    display: grid;
    padding: 18px 0;
    overflow-y: auto;
    gap: 10px;
}

.cart-item {
    display: grid;
    padding: 10px;
    grid-template-columns: 76px 1fr 32px;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #100d0e;
}

.cart-item img {
    width: 76px;
    height: 62px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-copy {
    display: grid;
    gap: 3px;
}

.cart-item-copy strong {
    font-size: 12px;
}

.cart-item-copy span {
    color: var(--accent-bright);
    font-size: 12px;
    font-weight: 750;
}

.cart-remove {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    font-size: 20px;
}

.cart-remove:hover {
    background: rgba(208, 24, 67, .12);
    color: #ff6287;
}

.cart-empty {
    margin: auto 0;
    text-align: center;
}

.cart-empty > div {
    display: grid;
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    place-items: center;
    border: 1px solid rgba(208, 24, 67, .3);
    border-radius: 50%;
    background: rgba(208, 24, 67, .09);
    color: var(--accent-bright);
    font-size: 28px;
}

.cart-empty h3 {
    margin-bottom: 5px;
}

.cart-empty p {
    margin-bottom: 21px;
    color: var(--muted);
    font-size: 13px;
}

.cart-checkout {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.cart-summary {
    display: flex;
    margin-bottom: 6px;
    justify-content: space-between;
    align-items: center;
}

.cart-summary span {
    color: var(--muted);
    font-size: 12px;
}

.cart-summary strong {
    color: var(--accent-bright);
    font-size: 21px;
}

.cart-checkout > p,
.tebex-note {
    color: var(--muted);
    font-size: 10px;
}

.tebex-note {
    display: block;
    margin-top: 10px;
    text-align: center;
}

.toast-region {
    position: fixed;
    z-index: 100;
    right: 20px;
    bottom: 20px;
    display: grid;
    width: min(360px, calc(100% - 40px));
    gap: 9px;
}

.toast {
    padding: 14px 17px;
    border: 1px solid rgba(208, 24, 67, .42);
    border-radius: 11px;
    background: #140d10;
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
    color: #f4edef;
    font-size: 12px;
    animation: toast-in .25s ease both;
}

@keyframes toast-in {
    from { opacity: 0; transform: translateY(8px); }
}

/* Footer */
.site-footer {
    padding: 70px 0 24px;
    border-top: 1px solid var(--line);
    background: #070607;
}

.footer-grid {
    display: grid;
    padding-bottom: 55px;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 70px;
}

.footer-brand p {
    max-width: 400px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-grid h3 {
    margin-bottom: 6px;
    font-size: 12px;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) span {
    color: var(--muted);
    font-size: 12px;
}

.footer-grid a:hover {
    color: var(--accent-bright) !important;
}

.footer-bottom {
    display: flex;
    padding-top: 22px;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
    color: #686265;
    font-size: 10px;
}

/* Responsive */
@media (max-width: 1120px) {
    .store-header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
        order: 2;
    }

    .header-actions {
        order: 3;
    }

    .pill-nav {
        position: absolute;
        top: 76px;
        right: 0;
        display: none;
        width: 260px;
        padding: 10px;
        flex-direction: column;
        align-items: stretch;
        border-radius: 13px;
        box-shadow: 0 25px 70px rgba(0,0,0,.55);
    }

    .pill-nav.is-open {
        display: flex;
    }

    .pill-nav a,
    .nav-release {
        padding: 12px;
    }

    .nav-release {
        display: none;
    }

    .pill-nav a.is-active::after {
        right: auto;
        bottom: 7px;
        left: 5px;
        width: 2px;
        height: 22px;
    }

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

    .benefit-grid article {
        padding: 25px 22px;
    }

    .footer-grid {
        grid-template-columns: 1.6fr repeat(3, 1fr);
        gap: 35px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-media {
        position: relative;
        top: auto;
    }
}

@media (max-width: 780px) {
    .container,
    .store-header-inner {
        width: min(calc(100% - 28px), var(--container));
    }

    .promo-bar {
        font-size: 10px;
        line-height: 30px;
    }

    .store-header {
        height: 74px;
    }

    .store-header-inner {
        gap: 9px;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
    }

    .brand-copy {
        display: none;
    }

    .sign-in-button span,
    .user-link b,
    .cart-button > span,
    .admin-shortcut {
        display: none;
    }

    .sign-in-button {
        min-width: 43px;
        padding: 0 12px;
    }

    .user-link {
        padding-right: 5px;
    }

    .cart-button {
        padding: 0 8px 0 11px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
    }

    .pill-nav {
        top: 66px;
        right: 0;
    }

    .home-hero,
    .hero-content {
        min-height: 620px;
    }

    .hero-content {
        padding: 90px 0;
    }

    .hero-art {
        top: 10px;
        width: 420px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(43px, 13vw, 68px);
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .benefit-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid article,
    .benefit-grid article:first-child {
        min-height: 105px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        border-left: 1px solid var(--line);
    }

    .store-section,
    .catalog-section {
        padding-bottom: 80px;
    }

    .store-product-grid {
        grid-template-columns: 1fr;
    }

    .store-product-grid.is-two-products {
        grid-template-columns: 1fr;
    }

    .community-section {
        padding: 80px 0;
    }

    .community-grid article {
        min-height: 150px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .discord-section {
        padding: 70px 0;
    }

    .discord-card {
        padding: 38px 26px;
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .account-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-section {
        padding-top: 42px;
    }

    .product-detail-grid {
        gap: 28px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .header-actions {
        gap: 5px;
    }

    .hero-pill {
        max-width: 100%;
        font-size: 10px;
    }

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

    .catalog-hero {
        padding-top: 65px;
    }

    .catalog-hero h1 {
        font-size: 42px;
    }

    .auth-wrap,
    .status-wrap {
        padding: 48px 14px 80px;
    }

    .auth-card,
    .status-card {
        padding: 28px 20px;
    }

    .product-detail-copy h1 {
        font-size: 40px;
    }

    .product-feature-list {
        grid-template-columns: 1fr;
    }

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

    .product-purchase .button {
        width: 100%;
    }

    .info-card,
    .table-card {
        padding: 20px;
    }

    .info-list div {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .info-list dd {
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
