:root {
  --void: #070b1d;
  --space: #0c1432;
  --panel: rgba(12, 20, 50, .82);
  --panel-strong: rgba(15, 25, 62, .96);
  --glass: rgba(255, 255, 255, .08);
  --ink: #f8fbff;
  --muted: #a9b8d8;
  --line: rgba(139, 224, 255, .42);
  --hard-line: #8be0ff;
  --cyan: #20d9ff;
  --blue: #2469ff;
  --violet: #9a4cff;
  --magenta: #ff41d6;
  --gold: #ffd66b;
  --red: #ff4d61;
  --green: #42e99a;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 0%, rgba(255, 214, 107, .18) 0 12%, transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(32, 217, 255, .20) 0 13%, transparent 30%),
    radial-gradient(circle at 90% 58%, rgba(154, 76, 255, .18) 0 13%, transparent 32%),
    linear-gradient(180deg, #060a19 0%, #091431 42%, #070b1d 100%);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(32, 217, 255, .08) 47% 48%, transparent 49% 100%),
    linear-gradient(62deg, transparent 0 58%, rgba(255, 214, 107, .08) 59% 60%, transparent 61% 100%),
    radial-gradient(rgba(139, 224, 255, .18) 1px, transparent 1.5px) 0 0 / 18px 18px;
  opacity: .78;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 11, 29, .92), transparent 28%, transparent 72%, rgba(7, 11, 29, .74));
}

body.is-locked {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

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

[data-parallax] {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px clamp(16px, 4vw, 58px);
  border-bottom: 1px solid rgba(139, 224, 255, .28);
  background: rgba(5, 9, 24, .72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
  backdrop-filter: blur(20px) saturate(1.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.wordmark-image {
  display: block;
  width: clamp(220px, 23vw, 330px);
  height: 70px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 10px rgba(32, 217, 255, .15));
}

.wordmark-image-footer {
  width: min(330px, 78vw);
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3.5vw, 48px);
  color: #fff;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 12px 3px 10px;
  color: #fff;
  letter-spacing: .055em;
  text-shadow: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--cyan));
  box-shadow: 0 0 10px rgba(32, 217, 255, .45);
  clip-path: polygon(0 25%, 88% 25%, 100% 0, 94% 100%, 0 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-links a:hover {
  color: var(--gold);
  text-shadow: 2px 2px 0 rgba(217, 35, 60, .84), 0 0 16px rgba(255, 214, 107, .38);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.cart-button,
.close-button {
  border: 1px solid rgba(139, 224, 255, .5);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.cart-button {
  min-width: 78px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(32, 217, 255, .16);
  font-weight: 900;
}

.cart-icon {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 92px));
  display: grid;
  align-items: center;
  padding: clamp(46px, 7vw, 90px) clamp(16px, 5vw, 70px) 54px;
  overflow: hidden;
  border-bottom: 1px solid rgba(139, 224, 255, .22);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 22, .96) 0%, rgba(5, 8, 22, .80) 36%, rgba(5, 8, 22, .16) 78%),
    linear-gradient(0deg, rgba(7, 11, 29, .76), transparent 48%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.06;
}

.hero-content {
  width: min(650px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: .95;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(58px, 11vw, 138px);
  font-weight: 950;
  text-shadow: 0 0 24px rgba(32, 217, 255, .28), 4px 4px 0 rgba(0, 0, 0, .52);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 6vw, 70px);
  font-weight: 950;
}

h3 {
  font-size: 25px;
  line-height: 1.05;
}

.hero-copy {
  max-width: 560px;
  color: rgba(232, 241, 255, .86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.primary-action,
.secondary-action,
.checkout-button,
.filter-chip {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-weight: 950;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.primary-action:hover,
.secondary-action:hover,
.checkout-button:hover,
.filter-chip:hover,
.cart-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .55);
}

.primary-action {
  padding: 0 25px;
  background: linear-gradient(135deg, var(--gold), #ff7c43 48%, var(--magenta));
  box-shadow: 0 14px 34px rgba(255, 83, 92, .28), 0 0 26px rgba(255, 214, 107, .18);
  color: #090d1e;
}

.secondary-action {
  padding: 0 23px;
  background: rgba(255, 255, 255, .09);
  box-shadow: inset 0 0 20px rgba(139, 224, 255, .08);
  color: #fff;
}

.drop-card {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 34px;
  width: min(280px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 214, 107, .56);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 214, 107, .95), rgba(255, 65, 214, .78)),
    rgba(255, 255, 255, .12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .42), 0 0 34px rgba(255, 214, 107, .28);
  color: #090d1e;
  transform: rotate(1.5deg);
}

.drop-card span,
.drop-card small {
  display: block;
  font-weight: 950;
}

.drop-card strong {
  display: block;
  margin: 6px 0;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, .25);
}

.stats-band,
.section-head,
.featured-grid,
.shop-shell,
.club-band {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

.stats-band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -32px;
  border: 1px solid rgba(139, 224, 255, .38);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(12, 20, 50, .94), rgba(15, 25, 62, .78));
  box-shadow: var(--shadow), inset 0 0 36px rgba(32, 217, 255, .08);
  overflow: hidden;
}

.stats-band div {
  min-height: 104px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  border-right: 1px solid rgba(139, 224, 255, .22);
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band strong {
  color: #fff;
  font-size: 42px;
  font-weight: 950;
  text-shadow: 0 0 18px rgba(32, 217, 255, .42);
}

.stats-band span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.section-head {
  padding: 96px 0 30px;
}

.section-head h2,
.shop-heading h2,
.club-band h2 {
  color: #fff;
}

.section-head p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 86px;
}

.feature-panel {
  min-height: 285px;
  display: grid;
  align-content: end;
  padding: 24px;
  border: 1px solid rgba(139, 224, 255, .36);
  border-radius: 18px;
  box-shadow: var(--shadow), inset 0 0 34px rgba(255, 255, 255, .08);
  overflow: hidden;
  position: relative;
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .40) 0 4%, transparent 5%),
    repeating-linear-gradient(130deg, rgba(255, 255, 255, .14) 0 7px, transparent 7px 18px);
  transform: rotate(-8deg);
}

.feature-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 8, 23, .68), transparent 52%);
}

.feature-panel h3,
.feature-panel p,
.feature-panel .tag {
  position: relative;
  z-index: 1;
}

.feature-panel p {
  margin-bottom: 0;
  max-width: 310px;
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
  line-height: 1.45;
}

.feature-panel-red {
  background: radial-gradient(circle at 80% 12%, rgba(255, 214, 107, .78), transparent 23%), linear-gradient(135deg, #ef3d3d, #681dff 72%);
}

.feature-panel-blue {
  background: radial-gradient(circle at 78% 20%, rgba(31, 215, 255, .82), transparent 24%), linear-gradient(135deg, #10255f, #1463ff 52%, #11131a);
}

.feature-panel-gold {
  background: radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .84), transparent 23%), linear-gradient(135deg, #ffd83d, #ff7a1a 46%, #8b2fff);
}

.tag {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.shop-shell {
  padding: 32px 0 90px;
}

.shop-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.search-box {
  display: grid;
  gap: 7px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(139, 224, 255, .42);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  padding: 0 15px;
  color: #fff;
  font-weight: 850;
  outline: 0;
  box-shadow: inset 0 0 24px rgba(32, 217, 255, .08);
}

.search-box input::placeholder {
  color: rgba(222, 235, 255, .54);
}

.search-box input:focus {
  border-color: rgba(255, 214, 107, .72);
  background: rgba(255, 255, 255, .11);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.filter-chip {
  min-width: 90px;
  padding: 0 16px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.filter-chip.is-active {
  background: linear-gradient(135deg, rgba(32, 217, 255, .94), rgba(154, 76, 255, .84));
  box-shadow: 0 0 30px rgba(32, 217, 255, .22);
}

.comic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.comic-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  min-width: 0;
  border: 1px solid rgba(139, 224, 255, .34);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .055));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .34), inset 0 0 30px rgba(139, 224, 255, .05);
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
  transform-style: preserve-3d;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.comic-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-5px);
  border-color: rgba(255, 214, 107, .58);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .42), 0 0 34px rgba(32, 217, 255, .12);
}

.comic-cover {
  min-height: 330px;
  position: relative;
  display: grid;
  align-content: end;
  padding: 16px;
  border-bottom: 1px solid rgba(139, 224, 255, .26);
  color: #fff;
  overflow: hidden;
  transform: translateZ(0);
}

.comic-cover::before {
  content: "";
  position: absolute;
  inset: -16%;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, .74) 0 6%, transparent 7%),
    radial-gradient(circle at 18% 78%, rgba(32, 217, 255, .42) 0 9%, transparent 10%),
    linear-gradient(130deg, rgba(255, 255, 255, .22) 0 12%, transparent 13% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .14) 0 4px, transparent 4px 12px);
  transform: rotate(-9deg);
}

.comic-cover::after {
  content: attr(data-issue);
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  min-width: 46px;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 50%;
  background: rgba(5, 9, 24, .64);
  box-shadow: 0 0 18px rgba(255, 214, 107, .30), inset 0 0 12px rgba(255, 255, 255, .14);
  color: var(--gold);
  font-size: 22px;
  font-weight: 950;
}

.cover-title {
  position: relative;
  z-index: 1;
  max-width: 95%;
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 950;
  line-height: .9;
  text-shadow: 0 0 18px rgba(32, 217, 255, .32), 3px 3px 0 rgba(0, 0, 0, .42);
}

.comic-body {
  padding: 17px;
}

.comic-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.comic-body h3 {
  margin-bottom: 8px;
  color: #fff;
}

.comic-body p {
  min-height: 70px;
  color: var(--muted);
  line-height: 1.48;
}

.comic-actions {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
  align-items: center;
}

.add-button,
.preview-button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #ff7c43);
  box-shadow: 0 12px 24px rgba(255, 124, 67, .20);
  color: #090d1e;
  font-weight: 950;
}

.preview-button {
  background: rgba(255, 255, 255, .10);
  color: #fff;
}

.club-band {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 76px;
  padding: 34px;
  border: 1px solid rgba(139, 224, 255, .36);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 214, 107, .22), transparent 30%),
    radial-gradient(circle at 20% 70%, rgba(255, 65, 214, .17), transparent 28%),
    linear-gradient(135deg, rgba(15, 25, 62, .96), rgba(7, 11, 29, .94));
  box-shadow: var(--shadow), inset 0 0 44px rgba(32, 217, 255, .08);
}

.club-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.club-perks span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(139, 224, 255, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 900;
}

.site-footer {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-top: 1px solid rgba(139, 224, 255, .30);
  isolation: isolate;
}

.footer-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.footer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 22, .96) 0%, rgba(5, 8, 22, .78) 40%, rgba(5, 8, 22, .18) 78%),
    linear-gradient(0deg, rgba(5, 8, 22, .84) 0%, rgba(5, 8, 22, .18) 54%, rgba(5, 8, 22, .32) 100%);
}

.footer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.05;
}

.footer-glow-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.glow-streak,
.glow-sigil {
  position: absolute;
  display: block;
  pointer-events: none;
}

.glow-streak {
  width: clamp(180px, 20vw, 360px);
  height: 3px;
  border-radius: 999px;
  filter: drop-shadow(0 0 12px currentColor);
  opacity: .84;
  transform: translate3d(0, var(--parallax-y), 0) rotate(var(--streak-angle));
}

.glow-streak::before,
.glow-streak::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, currentColor 42%, rgba(255, 255, 255, .92) 50%, currentColor 58%, transparent);
}

.glow-streak::after {
  height: 14px;
  top: -5px;
  opacity: .22;
  filter: blur(6px);
}

.glow-streak-cyan {
  --streak-angle: -18deg;
  left: 8%;
  top: 34%;
  color: var(--cyan);
}

.glow-streak-gold {
  --streak-angle: 14deg;
  right: 13%;
  top: 24%;
  color: var(--gold);
}

.glow-streak-violet {
  --streak-angle: -10deg;
  right: 26%;
  bottom: 24%;
  color: var(--magenta);
}

.glow-sigil {
  width: clamp(72px, 9vw, 130px);
  aspect-ratio: 1;
  border: 1px solid rgba(139, 224, 255, .50);
  border-radius: 28% 72% 42% 58%;
  box-shadow: 0 0 26px rgba(32, 217, 255, .24), inset 0 0 18px rgba(255, 255, 255, .08);
  opacity: .50;
  transform: translate3d(0, var(--parallax-y), 0) rotate(18deg);
}

.glow-sigil::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 214, 107, .44);
  border-radius: inherit;
  transform: rotate(32deg);
}

.glow-sigil-one {
  left: 18%;
  bottom: 24%;
}

.glow-sigil-two {
  right: 8%;
  top: 44%;
  border-color: rgba(255, 65, 214, .42);
}

.footer-content {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 126px) 0 clamp(22px, 4vw, 36px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1.25fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(139, 224, 255, .30);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(5, 9, 24, .78), rgba(12, 20, 50, .44));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42), inset 0 0 34px rgba(32, 217, 255, .06);
  backdrop-filter: blur(18px) saturate(1.2);
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand h2 {
  max-width: 590px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
}

.footer-brand p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav h3 {
  margin: 0 0 6px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-nav a {
  width: max-content;
  max-width: 100%;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.footer-nav a:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(32, 217, 255, .38);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px 0;
  color: rgba(222, 235, 255, .68);
  font-size: 13px;
  font-weight: 750;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(2, 5, 16, .72);
  backdrop-filter: blur(8px);
}

.preview,
.cart-drawer {
  position: fixed;
  z-index: 40;
  border: 1px solid rgba(139, 224, 255, .42);
  border-radius: 24px;
  background: var(--panel-strong);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .58), inset 0 0 34px rgba(32, 217, 255, .07);
  color: #fff;
  overflow: hidden;
}

.preview {
  left: 50%;
  top: 50%;
  width: min(900px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  display: grid;
  grid-template-columns: .85fr 1fr;
  overflow: auto;
  transform: translate(-50%, -50%);
}

.preview-cover {
  min-height: 520px;
  border-right: 1px solid rgba(139, 224, 255, .30);
  background: var(--blue);
}

.preview-copy {
  padding: clamp(22px, 4vw, 42px);
}

.preview-copy h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 60px);
}

.preview-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.preview-copy dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.preview-copy dl div {
  padding: 14px;
  border: 1px solid rgba(139, 224, 255, .30);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
}

.preview-copy dt {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.preview-copy dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.close-button {
  width: 42px;
  height: 42px;
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  border-radius: 50%;
}

.close-button::before,
.close-button::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 19px;
  width: 17px;
  height: 2px;
  background: currentColor;
}

.close-button::before {
  transform: rotate(45deg);
}

.close-button::after {
  transform: rotate(-45deg);
}

.cart-drawer {
  top: 0;
  right: 0;
  bottom: 0;
  width: min(500px, 100vw);
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 0;
  border-left: 1px solid rgba(139, 224, 255, .24);
  border-radius: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(32, 217, 255, .10), transparent 30%),
    linear-gradient(180deg, #0d1530 0%, #090f24 100%);
  box-shadow: -28px 0 80px rgba(0, 0, 0, .48);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  padding: 24px 26px;
  border-bottom: 1px solid rgba(139, 224, 255, .26);
}

.cart-header h2 {
  margin: 3px 0 0;
  color: #fff;
  font-size: 38px;
  line-height: 1;
}

.cart-kicker {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cart-header .close-button {
  position: relative;
  right: auto;
  top: auto;
}

.cart-items {
  overflow: auto;
  padding: 12px 26px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 224, 255, .38) transparent;
}

.cart-empty {
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 36px;
  color: var(--muted);
  text-align: center;
}

.cart-empty .empty-mark {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(139, 224, 255, .42);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 0 28px rgba(32, 217, 255, .12);
  color: #fff;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 25px;
}

.cart-empty strong {
  color: #fff;
  font-size: 22px;
}

.cart-empty p {
  max-width: 310px;
  margin: 0;
  line-height: 1.6;
}

.cart-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(139, 224, 255, .16);
}

.cart-thumb {
  width: 86px;
  height: 116px;
  border: 1px solid rgba(139, 224, 255, .42);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .30);
}

.cart-item-copy > strong,
.cart-item-copy > span {
  display: block;
}

.cart-item-copy > strong {
  margin-top: 5px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.cart-item-meta {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.cart-item-format {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.quantity-control {
  width: max-content;
  display: grid;
  grid-template-columns: 30px 34px 30px;
  align-items: center;
  margin-top: 13px;
  border: 1px solid rgba(139, 224, 255, .24);
  border-radius: 9px;
  overflow: hidden;
}

.quantity-control button,
.quantity-control span {
  width: 100%;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-weight: 900;
}

.quantity-control button:hover {
  background: rgba(32, 217, 255, .16);
}

.quantity-control span {
  border-inline: 1px solid rgba(139, 224, 255, .20);
  background: transparent;
  font-size: 12px;
}

.cart-item-end {
  min-width: 72px;
  display: grid;
  justify-items: end;
  gap: 62px;
}

.cart-item-end > strong {
  color: #fff;
  font-size: 15px;
}

.remove-button {
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.remove-button:hover {
  color: var(--red);
}

.cart-footer {
  padding: 20px 26px 24px;
  border-top: 1px solid rgba(139, 224, 255, .26);
  background: rgba(4, 8, 22, .62);
  box-shadow: 0 -18px 45px rgba(0, 0, 0, .22);
}

.delivery-note {
  display: grid;
  gap: 3px;
  margin-bottom: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(66, 233, 154, .24);
  border-radius: 12px;
  background: rgba(66, 233, 154, .07);
}

.delivery-note strong {
  color: var(--green);
  font-size: 12px;
}

.delivery-note span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.cart-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 17px;
  font-weight: 950;
}

.cart-total span,
.cart-total small {
  display: block;
}

.cart-total span {
  color: #fff;
  font-size: 14px;
}

.cart-total small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.cart-total > strong {
  color: #fff;
  font-size: 27px;
  line-height: 1;
}

.checkout-button {
  width: 100%;
  justify-content: space-between;
  padding: 0 20px;
  border-color: rgba(255, 214, 107, .68);
  border-radius: 13px;
  background: linear-gradient(110deg, var(--gold), #ff9c4a 64%, #ff795f);
  box-shadow: 0 14px 32px rgba(255, 124, 67, .18);
  color: #090d1e;
  font-size: 14px;
}

.checkout-button span:last-child {
  font-size: 24px;
}

.checkout-note {
  margin: 12px 0 0;
  color: rgba(222, 235, 255, .46);
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

.checkout-button:disabled {
  cursor: not-allowed;
  filter: grayscale(.75);
  opacity: .45;
}

.checkout-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 42;
  width: min(540px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(139, 224, 255, .42);
  border-radius: 22px;
  background: linear-gradient(160deg, #111a3a, #080e22);
  box-shadow: 0 35px 100px rgba(0, 0, 0, .65);
  color: #fff;
  transform: translate(-50%, -50%);
}

.checkout-modal h2 {
  margin: 8px 0 12px;
  font-size: clamp(34px, 6vw, 52px);
}

.checkout-modal > p {
  color: var(--muted);
  line-height: 1.55;
}

.checkout-brand {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.checkout-modal form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.checkout-modal label:not(.checkout-consent) {
  display: grid;
  gap: 7px;
  color: #dce7ff;
  font-size: 12px;
  font-weight: 850;
}

.checkout-modal input,
.checkout-modal select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(139, 224, 255, .28);
  border-radius: 11px;
  background: rgba(255, 255, 255, .07);
  padding: 0 13px;
  color: #fff;
  outline: 0;
}

.checkout-modal select option {
  background: #111a3a;
}

.checkout-modal input:focus,
.checkout-modal select:focus {
  border-color: var(--cyan);
}

.checkout-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.checkout-consent input {
  min-height: 18px;
  margin: 1px 0 0;
}

.checkout-modal-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 17px;
  border-top: 1px solid rgba(139, 224, 255, .18);
}

.checkout-modal-total strong {
  font-size: 25px;
}

.checkout-submit {
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(110deg, var(--gold), #ff8b4a);
  color: #080d20;
  font-weight: 950;
}

.checkout-feedback {
  display: grid;
  gap: 5px;
  color: var(--green);
  font-size: 12px;
  line-height: 1.45;
}

[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  [data-parallax],
  .comic-card,
  .comic-card:hover {
    --parallax-y: 0px;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .featured-grid,
  .comic-grid,
  .club-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 720px;
    align-items: start;
    padding-top: 54px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(5, 8, 22, .94) 0%, rgba(5, 8, 22, .72) 52%, rgba(5, 8, 22, .38) 100%);
  }

  .drop-card {
    left: 16px;
    right: auto;
    bottom: 24px;
  }

  .stats-band,
  .featured-grid,
  .comic-grid,
  .club-band,
  .preview {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(139, 224, 255, .22);
  }

  .stats-band div:last-child {
    border-bottom: 0;
  }

  .comic-cover {
    min-height: 285px;
  }

  .club-band {
    padding: 24px;
  }

  .site-footer {
    min-height: 760px;
    align-items: start;
  }

  .footer-media::after {
    background:
      linear-gradient(180deg, rgba(5, 8, 22, .94) 0%, rgba(5, 8, 22, .70) 46%, rgba(5, 8, 22, .30) 100%),
      linear-gradient(0deg, rgba(5, 8, 22, .62), transparent 46%);
  }

  .footer-media img {
    object-position: 62% center;
  }

  .footer-content {
    padding-top: 46px;
  }

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

  .footer-main {
    padding: 22px;
  }

  .footer-nav {
    gap: 20px;
  }

  .footer-nav div {
    gap: 8px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .glow-streak-cyan {
    left: -14%;
    top: 54%;
  }

  .glow-streak-gold {
    right: -18%;
    top: 32%;
  }

  .glow-sigil-one {
    left: 8%;
    bottom: 12%;
  }

  .preview-cover {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid rgba(139, 224, 255, .30);
  }
}

@media (max-width: 440px) {
  .topbar {
    gap: 12px;
    padding-inline: 12px;
  }

  .wordmark-image {
    width: min(190px, 58vw);
    height: 58px;
  }

  .cart-button {
    min-width: 66px;
  }

  .hero-actions,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .filter-chip {
    min-width: calc(50% - 6px);
  }
}
