:root {
  --store-panel: #101216;
  --store-panel-deep: #0c0e12;
  --store-line: rgba(128, 134, 144, .30);
}

body::after {
  content: "";
  position: fixed;
  z-index: 9999;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.store-main { display: block; }
.store-main[hidden] { display: none; }
.store-main.is-view-active { animation: store-view-in .48s cubic-bezier(.22, 1, .36, 1) both; }
@keyframes store-view-in { from { opacity: 0; transform: translateY(10px); } }
.store-wrap,
.store-hero__inner,
.restock__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.nav.is-top:not(.is-menu-open) {
  background-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

/* ---------- HERO ---------- */
.store-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 58vw, 760px);
  overflow: visible;
}

.store-hero__backdrop {
  position: absolute;
  z-index: -3;
  inset: 0 auto 0 50%;
  width: 100vw;
  max-width: none;
  transform: translateX(-50%);
  background: #0a0b0e url("assets/mxgicfps_thefeed_bg2.png") center top / cover no-repeat;
}

.store-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, rgba(7, 8, 10, .98) 0%, rgba(7, 8, 10, .83) 34%, rgba(7, 8, 10, .28) 70%, rgba(7, 8, 10, .42) 100%),
    linear-gradient(180deg, rgba(7, 8, 10, .08) 0%, rgba(7, 8, 10, .08) 65%, #0a0a0a 100%);
  pointer-events: none;
}

.store-hero__grunge {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  height: 100%;
  max-width: none;
  transform: translateX(-50%);
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: .055;
  pointer-events: none;
}

.store-hero__inner {
  min-height: clamp(620px, 58vw, 760px);
  padding-top: clamp(160px, 16vw, 222px);
  padding-bottom: 92px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.store-hero h1 {
  margin-top: 22px;
  font-family: var(--f-head);
  font-size: clamp(72px, 9.5vw, 132px);
  font-weight: 700;
  line-height: .78;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--ink-bright);
}

.store-hero__lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: var(--khaki);
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 1px;
}

.store-hero__action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(229, 51, 43, .68);
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  transition: color .18s ease, border-color .18s ease;
}
.store-hero__action span { color: var(--red); transition: transform .18s ease; }
.store-hero__action:hover { color: var(--ink-white); border-bottom-color: var(--red); }
.store-hero__action:hover span { transform: translateY(3px); }

.store-hero__intel {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 42px;
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.55px;
}
.store-hero__intel b { color: var(--khaki); font-weight: 500; }
.store-hero__intel .status-live { color: var(--green); }

.store-hero__separator,
.restock__separator {
  position: absolute;
  z-index: 3;
  left: 50%;
  width: 100vw;
  max-width: none;
  height: clamp(72px, 7vw, 118px);
  transform: translateX(-50%) rotate(180deg);
  pointer-events: none;
  background: url("assets/mxgicfps_separator.svg") left top / auto 100% repeat-x;
}
.store-hero__separator { bottom: calc(clamp(72px, 7vw, 118px) * -.64); }

/* ---------- SECTION RHYTHM ---------- */
.featured,
.catalog { position: relative; background: var(--bg); }
.featured { padding: clamp(116px, 11vw, 164px) 0 clamp(76px, 8vw, 112px); }
.catalog { padding: clamp(76px, 8vw, 112px) 0 clamp(94px, 9vw, 132px); border-top: 1px solid var(--line-07); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.section-head h2 {
  margin-top: 17px;
  font-family: var(--f-head);
  font-size: clamp(38px, 5vw, 58px);
  line-height: .95;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.section-head__note {
  margin: 0;
  text-align: right;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 1.6px;
}
.section-head__note span { color: var(--khaki); }

/* ---------- FEATURED DROP ---------- */
.featured-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(410px, .9fr);
  min-height: 560px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--store-line);
  background: var(--store-panel);
  box-shadow: 0 22px 60px -48px rgba(0, 0, 0, .9);
}
.featured-card::before,
.product-card::before,
.filterbar::before {
  content: "";
  position: absolute;
  z-index: 8;
  top: -1px;
  left: 18px;
  width: 78px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(229, 51, 43, .5);
}

.featured-card__visual {
  min-height: 560px;
  border-right: 1px solid var(--store-line);
}

.product-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 42%, rgba(229, 51, 43, .19), transparent 42%),
    linear-gradient(145deg, #281014 0%, #111318 53%, #0a0c0f 100%);
}
.product-visual::before {
  content: "01";
  position: absolute;
  z-index: 0;
  right: -16px;
  bottom: -58px;
  color: rgba(236, 234, 228, .035);
  font-family: var(--f-head);
  font-size: clamp(220px, 25vw, 390px);
  font-weight: 700;
  line-height: 1;
}
.product-visual__grid,
.product-art__grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    linear-gradient(rgba(236, 234, 228, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 234, 228, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(130deg, #000, transparent 74%);
  mask-image: linear-gradient(130deg, #000, transparent 74%);
}
.product-visual__scan {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: .38;
  background: repeating-linear-gradient(to bottom, transparent 0 8px, rgba(236, 234, 228, .026) 8px 9px);
}
.product-visual__corner {
  position: absolute;
  z-index: 4;
  width: 28px;
  height: 28px;
  border: 0 solid rgba(236, 234, 228, .42);
}
.product-visual__corner--tl { top: 22px; left: 22px; border-top-width: 1px; border-left-width: 1px; }
.product-visual__corner--br { right: 22px; bottom: 22px; border-right-width: 1px; border-bottom-width: 1px; }
.product-visual__kicker,
.product-visual__serial,
.product-visual__sub {
  position: absolute;
  z-index: 4;
  color: var(--khaki);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.8px;
}
.product-visual__kicker { top: 24px; left: 66px; }
.product-visual__serial { right: 26px; bottom: 26px; color: var(--muted); }
.product-visual__emblem {
  position: absolute;
  z-index: 4;
  top: 42%;
  left: 50%;
  width: clamp(64px, 7vw, 96px);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 24px rgba(229, 51, 43, .28));
}
.product-visual__word {
  position: absolute;
  z-index: 3;
  top: 59%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink-bright);
  font-family: var(--f-head);
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}
.product-visual__sub { top: calc(59% + clamp(58px, 6.8vw, 96px)); left: 50%; transform: translateX(-50%); white-space: nowrap; }

.featured-card__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 58px);
}
.featured-card__cat,
.product-card__sku {
  margin: 0;
  color: var(--khaki);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.8px;
}
.featured-card h3 {
  margin-top: 18px;
  font-family: var(--f-head);
  font-size: clamp(34px, 4.1vw, 52px);
  line-height: 1.02;
  letter-spacing: -.8px;
  text-transform: uppercase;
}
.featured-card__price { display: flex; align-items: baseline; gap: 9px; margin-top: 23px; }
.featured-card__price strong { color: var(--red); font-family: var(--f-head); font-size: 42px; line-height: 1; }
.featured-card__price span { color: var(--muted); font-size: 9px; letter-spacing: 1.4px; }
.featured-card__desc { max-width: 48ch; margin: 18px 0 0; color: var(--body); font-size: 12.5px; line-height: 1.75; }

.sizes { min-width: 0; margin: 27px 0 0; padding: 0; border: 0; }
.sizes legend { margin-bottom: 11px; padding: 0; color: var(--muted); font-size: 9px; font-weight: 500; letter-spacing: 1.7px; }
.sizes__row { display: flex; flex-wrap: wrap; gap: 8px; }
.size {
  width: 42px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--store-line);
  background: #0d0f13;
  color: var(--muted);
  font: 500 10px var(--f-mono);
  cursor: pointer;
  transition: color .16s ease, border-color .16s ease, background-color .16s ease;
}
.size:hover { color: var(--ink); border-color: rgba(229, 51, 43, .52); }
.size[aria-checked="true"] { color: var(--ink-white); border-color: rgba(229, 51, 43, .75); background: rgba(229, 51, 43, .16); }
.size:focus-visible,
.chip:focus-visible,
.btn-cart:focus-visible,
.btn-save:focus-visible,
.product-card button:focus-visible,
.notify__btn:focus-visible { outline: 1px solid var(--red); outline-offset: 3px; }

.featured-card__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 27px; }
.btn-cart,
.btn-save {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  font: 500 11px var(--f-mono);
  letter-spacing: 1.7px;
  cursor: pointer;
  transition: filter .16s ease, transform .16s ease, border-color .16s ease, background-color .16s ease;
}
.btn-cart { border: 1px solid rgba(229, 51, 43, .8); background: linear-gradient(96.8deg, rgba(213, 53, 49, .92), rgba(155, 46, 44, .92)); color: var(--ink-white); }
.btn-cart:hover { filter: brightness(1.12); transform: translateY(-1px); }
.btn-save { border: 1px solid rgba(229, 51, 43, .46); background: rgba(229, 51, 43, .045); color: var(--ink); }
.btn-save i { color: var(--red); }
.btn-save:hover,
.btn-save.is-saved { border-color: rgba(229, 51, 43, .82); background: rgba(229, 51, 43, .12); }
.featured-card__meta { margin: 25px 0 0; padding-top: 18px; border-top: 1px solid var(--line-07); color: var(--muted); font-size: 8px; line-height: 1.6; letter-spacing: 1.25px; }

/* ---------- FILTERS ---------- */
.filterbar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  align-items: end;
  gap: 28px;
  margin-top: 35px;
  padding: 17px 18px;
  border: 1px solid rgba(128, 134, 144, .25);
  background: linear-gradient(105deg, rgba(24, 26, 31, .92), rgba(14, 15, 18, .88));
}
.filterbar__group { min-width: 0; }
.filterbar__label { display: block; margin-bottom: 9px; color: var(--muted); font-size: 8.5px; font-weight: 500; letter-spacing: 1.7px; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(128, 134, 144, .28);
  background: #0d0f13;
  color: var(--muted);
  font: 500 9px var(--f-mono);
  letter-spacing: 1.1px;
  cursor: pointer;
  transition: color .16s ease, border-color .16s ease, background-color .16s ease;
}
.chip b { margin-left: 5px; color: rgba(199, 184, 155, .72); font-weight: 500; }
.chip:hover { color: var(--ink); border-color: rgba(128, 134, 144, .55); }
.chip.is-active { color: var(--ink); border-color: rgba(229, 51, 43, .62); background: rgba(229, 51, 43, .09); }
.chip.is-active b { color: var(--red); }
.sortbox { display: block; min-width: 0; }
.sortbox__control { position: relative; display: block; }
.sortbox select {
  width: 100%;
  height: 40px;
  appearance: none;
  padding: 0 34px 0 12px;
  border: 1px solid rgba(128, 134, 144, .3);
  background: #0d0f13;
  color: var(--khaki);
  font: 500 9.5px var(--f-mono);
  letter-spacing: 1.1px;
  cursor: pointer;
}
.sortbox select:focus-visible { outline: 1px solid var(--red); outline-offset: 2px; }
.sortbox__chevron {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 6px;
  height: 6px;
  margin-top: -5px;
  border-right: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  transform: rotate(45deg);
  pointer-events: none;
}

/* ---------- PRODUCT GRID ---------- */
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 34px; }
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--store-line);
  background: var(--store-panel);
  opacity: 0;
  transform: translateY(16px);
  animation: store-rise .52s forwards;
  transition: border-color .22s ease, box-shadow .22s ease;
}
@keyframes store-rise { to { opacity: 1; transform: none; } }
.product-card:hover { border-color: rgba(229, 51, 43, .5); box-shadow: 0 20px 44px -28px rgba(229, 51, 43, .48); }
.product-card.is-hidden { display: none; }

.product-art {
  --art-glow: rgba(229, 51, 43, .18);
  --art-start: #201014;
  position: relative;
  isolation: isolate;
  min-height: clamp(245px, 23vw, 320px);
  overflow: hidden;
  border-bottom: 1px solid var(--store-line);
  background: radial-gradient(circle at 68% 36%, var(--art-glow), transparent 44%), linear-gradient(145deg, var(--art-start), #0b0d10 72%);
}
.product-art::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(9, 10, 13, .5));
  pointer-events: none;
}
.product-art--cap { --art-glow: rgba(199, 184, 155, .16); --art-start: #1d1b18; }
.product-art--desk { --art-glow: rgba(93, 111, 133, .18); --art-start: #101720; }
.product-art--longsleeve { --art-glow: rgba(177, 45, 40, .16); --art-start: #221114; }
.product-art--patch { --art-glow: rgba(200, 94, 18, .16); --art-start: #21150d; }
.product-art--tags { --art-glow: rgba(124, 130, 140, .2); --art-start: #181a1f; }
.product-art__index {
  position: absolute;
  z-index: 0;
  top: -28px;
  right: -7px;
  color: rgba(236, 234, 228, .045);
  font: 700 clamp(120px, 14vw, 190px)/1 var(--f-head);
}
.product-art img {
  position: absolute;
  z-index: 4;
  left: 44px;
  top: 50%;
  width: clamp(42px, 4.3vw, 62px);
  transform: translateY(-50%);
  filter: drop-shadow(0 0 18px rgba(229, 51, 43, .22));
}
.product-art__type {
  position: absolute;
  z-index: 4;
  left: clamp(112px, 10vw, 148px);
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-bright);
  font: 700 clamp(36px, 4.3vw, 58px)/.92 var(--f-head);
  letter-spacing: -.02em;
}
.product-art__chip,
.product-art__badge,
.product-art__serial {
  position: absolute;
  z-index: 5;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.product-art__chip { top: 16px; left: 17px; padding: 6px 9px; border: 1px solid var(--line-10); background: rgba(10, 11, 14, .7); color: var(--khaki); }
.product-art__badge { top: 16px; right: 17px; padding: 6px 9px; border: 1px solid rgba(229, 51, 43, .68); background: rgba(229, 51, 43, .13); color: var(--ink); }
.product-art__badge--low { border-color: rgba(200, 94, 18, .56); background: rgba(200, 94, 18, .1); color: #d88952; }
.product-art__serial { right: 17px; bottom: 16px; color: var(--muted); }

.product-card__body { padding: 22px 23px 21px; }
.product-card__sku { color: var(--muted); font-size: 8px; }
.product-card h3 { margin-top: 11px; color: var(--ink-bright); font-family: var(--f-head); font-size: 25px; line-height: 1.08; text-transform: uppercase; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line-07); }
.product-card__foot strong { font: 700 25px/1 var(--f-head); }
.product-card__foot button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(229, 51, 43, .38);
  background: rgba(229, 51, 43, .055);
  color: var(--ink);
  font: 500 9px var(--f-mono);
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: gap .18s ease, border-color .18s ease, background-color .18s ease;
}
.product-card__foot button span { color: var(--red); }
.product-card__foot button:hover { gap: 11px; border-color: rgba(229, 51, 43, .72); background: rgba(229, 51, 43, .13); }
.grid-empty { grid-column: 1 / -1; margin: 0; padding: 90px 0; text-align: center; color: var(--muted); font-size: 11px; letter-spacing: 1.5px; }

/* ---------- TRUST ---------- */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 46px; border: 1px solid var(--store-line); background: var(--store-panel-deep); }
.trust__item { position: relative; min-height: 112px; display: grid; grid-template-columns: 32px 1fr; align-items: center; column-gap: 14px; padding: 24px 26px; border-right: 1px solid var(--store-line); }
.trust__item:last-child { border-right: 0; }
.trust__index { position: absolute; top: 10px; right: 12px; color: rgba(124, 130, 140, .48); font-size: 8px; letter-spacing: 1px; }
.trust__item > i { color: var(--red); font-size: 17px; }
.trust__item strong { display: block; color: var(--ink); font-size: 10.5px; font-weight: 500; letter-spacing: 1.25px; }
.trust__item div span { display: block; margin-top: 6px; color: var(--muted); font-size: 9.5px; line-height: 1.5; }

/* ---------- NEXT DROP ---------- */
.restock {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  overflow: hidden;
  background: #0a0b0e;
}
.restock::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: url("assets/mxgicfps_fall_in_bg.png") center 30% / cover no-repeat;
  filter: grayscale(90%) brightness(.48);
}
.restock::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 11, .42), rgba(8, 9, 11, .88));
}
.restock__separator { top: calc(clamp(72px, 7vw, 118px) * -.36); }
.restock__inner { min-height: 590px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding-top: 118px; padding-bottom: 76px; text-align: center; }
.restock h2 { margin-top: 20px; color: var(--ink-bright); font-family: var(--f-head); font-size: clamp(58px, 8vw, 100px); line-height: .84; letter-spacing: -2px; }
.restock__inner > p:not(.eyebrow):not(.notify__success):not(.notify__note) { max-width: 600px; margin: 25px 0 0; color: var(--khaki); font-size: 12.5px; line-height: 1.7; letter-spacing: .6px; }
.notify { width: min(530px, 100%); display: flex; gap: 10px; margin-top: 31px; }
.notify__input { flex: 1; min-width: 0; height: 50px; padding: 0 16px; border: 1px solid rgba(128, 134, 144, .44); background: rgba(10, 11, 14, .74); color: var(--ink); font: 500 10.5px var(--f-mono); letter-spacing: 1px; }
.notify__input::placeholder { color: var(--muted); }
.notify__input:focus-visible { outline: none; border-color: var(--red); }
.notify__btn { min-width: 150px; height: 50px; border: 1px solid rgba(229, 51, 43, .8); background: linear-gradient(96.8deg, rgba(213, 53, 49, .92), rgba(155, 46, 44, .92)); color: var(--ink-white); font: 500 11px var(--f-mono); letter-spacing: 1.7px; cursor: pointer; }
.notify__btn span { margin-left: 7px; }
.notify__btn:hover { filter: brightness(1.12); }
.notify.is-done { display: none; }
.notify__success { display: none; margin: 31px 0 0; padding: 15px 18px; border: 1px solid rgba(60, 224, 130, .4); background: rgba(60, 224, 130, .07); color: var(--green); font-size: 9.5px; line-height: 1.5; letter-spacing: 1.2px; }
.notify.is-done + .notify__success { display: block; }
.notify__note { margin: 13px 0 0; color: var(--muted); font-size: 8px; letter-spacing: 1.5px; }

/* ---------- INCOMING VIEW ---------- */
.incoming-hero {
  --hero-separator-height: clamp(80px, 7.8125vw, 150px);
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: visible;
}
.incoming-hero__backdrop {
  position: absolute;
  z-index: -4;
  top: -3%;
  bottom: -3%;
  left: 50%;
  width: 106vw;
  max-width: none;
  transform: translateX(-50%);
  background: #0a0b0e url("assets/mxgicfps_closed_store.png") center / cover no-repeat;
  filter: blur(7px) grayscale(85%) brightness(1) saturate(.9);
  opacity: .35;
  pointer-events: none;
}
.incoming-hero__image {
  position: absolute;
  z-index: -3;
  inset: 0 auto 0 50%;
  width: 100vw;
  max-width: none;
  transform: translateX(-50%);
  background-color: transparent;
  background-image: url("assets/mxgicfps_closed_store.png");
  background-position: center calc(50% + clamp(100px, 8vw, 140px));
  background-size: auto calc(100% + clamp(360px, 32vw, 520px));
  background-repeat: no-repeat;
  filter: grayscale(85%) brightness(1.4) contrast(1.06);
  opacity: .46;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 72%, transparent 82%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 72%, transparent 82%, transparent 100%);
  pointer-events: none;
}
.incoming-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(90deg, rgba(8, 9, 11, .64) 0%, rgba(8, 9, 11, .38) 42%, rgba(8, 9, 11, .04) 76%, rgba(8, 9, 11, .10) 100%);
  pointer-events: none;
}
.incoming-hero__grunge {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 100vw;
  height: 100%;
  max-width: none;
  transform: translateX(-50%);
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: .05;
  pointer-events: none;
}
.incoming-hero__grunge--base { z-index: -2; }
.incoming-hero__grunge--top { z-index: 0; }
.incoming-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(104px, 9vw, 140px) var(--pad-x);
}
.incoming-hero__intro { width: 100%; }
.incoming-hero h1 {
  margin-top: 18px;
  color: var(--ink-bright);
  font-family: var(--f-head);
  font-size: clamp(60px, 7vw, 88px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -1.5px;
}
.incoming-hero__lead {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--body);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 1.05px;
}
.incoming-hero__intel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.55px;
}
.incoming-hero__intel b { color: var(--khaki); font-weight: 500; }
.incoming-hero__access {
  width: min(760px, 100%);
  margin-top: 36px;
}
.incoming-progress {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding: 16px 17px 14px;
  border: 1px solid rgba(128, 134, 144, .28);
  background: rgba(10, 11, 14, .54);
  box-shadow: inset 0 1px rgba(236, 234, 228, .025);
}
.incoming-progress::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 17px;
  width: 64px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(229, 51, 43, .42);
}
.incoming-progress__head,
.incoming-progress__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1.7px;
}
.incoming-progress__head { color: var(--muted); }
.incoming-progress__head strong {
  min-width: 42px;
  color: var(--red);
  font-size: 10px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1.2px;
  text-align: right;
}
.incoming-progress__track {
  position: relative;
  height: 8px;
  margin-top: 14px;
  overflow: hidden;
  border-top: 1px solid rgba(128, 134, 144, .32);
  border-bottom: 1px solid rgba(128, 134, 144, .32);
  background: rgba(5, 6, 8, .76);
}
.incoming-progress__track::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 calc(10% - 1px),
    rgba(128, 134, 144, .28) calc(10% - 1px) 10%
  );
}
.incoming-progress__track::after {
  content: none;
}
.incoming-progress__fill {
  position: relative;
  display: block;
  width: 0;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #8f0b08, #c72822 72%, var(--red));
  box-shadow: 0 0 8px rgba(229, 51, 43, .34);
  transition: none;
}
.incoming-progress__fill::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 236, 232, .84);
  box-shadow: 0 0 6px rgba(229, 51, 43, .72);
}
.incoming-progress__fill::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 16%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 236, 232, .42), transparent);
  transform: translateX(-120%);
}
.incoming-progress.is-loading .incoming-progress__fill::after {
  opacity: 1;
  animation: incoming-stock-scan 2.25s steps(12, end) forwards;
}
.incoming-progress.is-loading .incoming-progress__head strong {
  animation: incoming-stock-signal .26s steps(2, end) infinite;
}
.incoming-progress.is-complete .incoming-progress__head strong {
  text-shadow: 0 0 10px rgba(229, 51, 43, .5);
}
.incoming-progress.is-complete .incoming-progress__track {
  animation: incoming-stock-lock .42s steps(2, end);
}
@keyframes incoming-stock-scan {
  0%, 12% { transform: translateX(-120%); }
  38% { transform: translateX(110%); }
  45% { transform: translateX(110%); }
  72% { transform: translateX(300%); }
  78% { transform: translateX(300%); }
  100% { transform: translateX(470%); }
}
@keyframes incoming-stock-signal { 50% { opacity: .58; } }
@keyframes incoming-stock-lock { 50% { filter: brightness(1.8); } }
.incoming-progress__meta { margin-top: 11px; color: rgba(124, 130, 140, .72); font-size: 7.5px; }
.notify--incoming { width: 100%; margin-top: 16px; }
.notify--incoming .notify__input,
.notify--incoming .notify__btn { height: 48px; }
.notify--incoming .notify__btn { min-width: 190px; }
.notify--incoming ~ .notify__note { margin-top: 11px; }
.incoming-hero__separator {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: calc(var(--hero-separator-height) * -.7);
  width: 100vw;
  max-width: none;
  height: var(--hero-separator-height);
  transform: translateX(-50%) rotate(180deg);
  background: url("assets/mxgicfps_separator.svg") left top / auto 100% repeat-x;
  pointer-events: none;
}

.incoming-manifest { padding: clamp(120px, 11vw, 160px) 0 clamp(92px, 9vw, 132px); background: var(--bg); }
.locked-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 36px; }
.locked-card {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--store-line);
  background:
    radial-gradient(circle at 52% 38%, rgba(229, 51, 43, .105), transparent 38%),
    linear-gradient(145deg, #171014, #0b0d10 72%);
}
.locked-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(rgba(236, 234, 228, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 234, 228, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(145deg, #000, transparent 76%);
  mask-image: linear-gradient(145deg, #000, transparent 76%);
}
.locked-card::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 18px;
  width: 72px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(229, 51, 43, .5);
}
.locked-card__index { position: absolute; top: -28px; right: -6px; z-index: -1; color: rgba(236, 234, 228, .04); font: 700 180px/1 var(--f-head); }
.locked-card__cat { position: absolute; top: 17px; left: 17px; padding: 6px 9px; border: 1px solid var(--line-10); background: rgba(10, 11, 14, .72); color: var(--khaki); font-size: 8.5px; font-weight: 500; letter-spacing: 1.5px; }
.locked-card img { width: 54px; filter: drop-shadow(0 0 18px rgba(229, 51, 43, .22)); }
.locked-card h3 { margin-top: 17px; color: var(--ink-bright); font-family: var(--f-head); font-size: clamp(42px, 4.6vw, 62px); line-height: .9; text-align: center; }
.locked-card__status { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; padding: 8px 11px; border: 1px solid rgba(128, 134, 144, .3); background: rgba(10, 11, 14, .62); color: var(--muted); font-size: 8.5px; letter-spacing: 1.6px; }
.locked-card__status i { color: var(--red); }
.locked-card__supply { position: absolute; left: 17px; bottom: 16px; color: rgba(124, 130, 140, .75); font-size: 7.5px; letter-spacing: 1.4px; }

/* ---------- STORE STATE SWITCH ---------- */
.store-switch {
  position: fixed;
  z-index: 260;
  right: clamp(16px, 2.5vw, 30px);
  bottom: clamp(16px, 2.5vw, 30px);
  min-width: 300px;
  padding: 10px;
  border: 1px solid rgba(128, 134, 144, .38);
  background: rgba(11, 13, 17, .94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .62);
}
.store-switch::before { content: ""; position: absolute; top: -1px; left: 14px; width: 54px; height: 2px; background: var(--red); box-shadow: 0 0 12px rgba(229, 51, 43, .55); }
.store-switch__status { display: flex; align-items: center; gap: 8px; padding: 2px 4px 9px; color: var(--muted); font-size: 7.5px; font-weight: 500; letter-spacing: 1.5px; }
.store-switch__status i { width: 5px; height: 5px; background: var(--green); box-shadow: 0 0 7px rgba(60, 224, 130, .7); }
.store-switch__options { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.store-switch__option { min-height: 36px; border: 1px solid rgba(128, 134, 144, .24); background: #0d0f13; color: var(--muted); font: 500 8.5px var(--f-mono); letter-spacing: 1.35px; cursor: pointer; transition: color .16s ease, border-color .16s ease, background-color .16s ease; }
.store-switch__option:hover { color: var(--ink); border-color: rgba(128, 134, 144, .5); }
.store-switch__option[aria-pressed="true"] { color: var(--ink-white); border-color: rgba(229, 51, 43, .65); background: rgba(229, 51, 43, .13); }
.store-switch__option:focus-visible { outline: 1px solid var(--red); outline-offset: 2px; }

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  z-index: 300;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(229, 51, 43, .55);
  background: rgba(11, 13, 17, .97);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .6);
  color: var(--ink-white);
  font-size: 9.5px;
  letter-spacing: 1.3px;
  transform: translate(-50%, 22px);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
}
.toast i { color: var(--red); }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 1024px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-card__visual { min-height: 460px; border-right: 0; border-bottom: 1px solid var(--store-line); }
  .product-art__type { left: 126px; }
}

@media (max-width: 860px) {
  .filterbar { grid-template-columns: 1fr; }
  .sortbox { max-width: 260px; }
  .trust { grid-template-columns: 1fr; }
  .trust__item { border-right: 0; border-bottom: 1px solid var(--store-line); }
  .trust__item:last-child { border-bottom: 0; }
}

@media (max-width: 680px) {
  .store-hero { min-height: 650px; }
  .store-hero__backdrop { background-position: 65% top; }
  .store-hero::before { background: linear-gradient(90deg, rgba(7, 8, 10, .96), rgba(7, 8, 10, .55)); }
  .store-hero__inner { min-height: 650px; padding-top: 145px; padding-bottom: 86px; }
  .store-hero h1 { font-size: clamp(66px, 22vw, 92px); letter-spacing: -2px; }
  .store-hero__lead { font-size: 11.5px; }
  .store-hero__intel { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
  .section-head { align-items: flex-start; }
  .section-head__note { text-align: left; }
  .featured-card__visual { min-height: 360px; }
  .product-visual__word { font-size: 48px; }
  .product-visual__sub { top: calc(59% + 58px); font-size: 7px; }
  .featured-card__details { padding: 30px 22px; }
  .featured-card h3 { font-size: 34px; }
  .featured-card__actions { flex-direction: column; }
  .btn-cart,
  .btn-save { width: 100%; }
  .filterbar { padding: 16px; }
  .chips { display: grid; grid-template-columns: 1fr 1fr; }
  .chip { width: 100%; }
  .sortbox { max-width: none; }
  .product-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-art { min-height: 270px; }
  .product-art img { left: 28px; width: 46px; }
  .product-art__type { left: 96px; font-size: 40px; }
  .product-card h3 { font-size: 23px; }
  .restock__inner { min-height: 620px; padding-top: 120px; }
  .restock h2 { font-size: clamp(54px, 18vw, 76px); }
  .notify { flex-direction: column; }
  .notify__btn { width: 100%; }
  .incoming-hero__backdrop { background-position: 68% center; }
  .incoming-hero__image { background-position: 68% calc(50% + 100px); }
  .incoming-hero__inner { padding-top: 100px; padding-bottom: 100px; }
  .incoming-hero h1 { font-size: clamp(54px, 18vw, 72px); line-height: .9; letter-spacing: -1px; }
  .incoming-progress__meta { align-items: flex-start; flex-direction: column; gap: 6px; }
  .notify--incoming .notify__btn { min-width: 0; }
  .locked-grid { grid-template-columns: 1fr; gap: 24px; }
  .locked-card { min-height: 330px; }
  .store-switch { right: 12px; bottom: 12px; left: 12px; min-width: 0; padding: 8px; }
  .store-switch__status { display: none; }
  .toast { bottom: 78px; width: calc(100% - 24px); justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .chips { grid-template-columns: 1fr; }
  .store-hero__intel { grid-template-columns: 1fr; }
  .product-card__foot { align-items: flex-start; flex-direction: column; }
  .product-card__foot button { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .product-card { animation: none; opacity: 1; transform: none; }
  .store-main.is-view-active { animation: none; }
  .toast,
  .store-hero__action span { transition: none; }
}
