:root {
  --bg: #07080b;
  --bg-soft: #10131a;
  --panel: rgba(16, 19, 26, 0.78);
  --panel-solid: #11151d;
  --text: #f7f3e8;
  --muted: #a9a79d;
  --line: rgba(255, 255, 255, 0.11);
  --gold: #d6aa4b;
  --gold-bright: #ffe3a1;
  --teal: #57d6c9;
  --red: #e25d5d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 8%, rgba(214, 170, 75, 0.1), transparent 34rem),
    radial-gradient(circle at 12% 44%, rgba(87, 214, 201, 0.05), transparent 28rem),
    linear-gradient(135deg, #050609 0%, #090b0f 46%, #070604 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.9) 0%, rgba(5, 6, 9, 0.66) 34%, rgba(5, 6, 9, 0.42) 58%, rgba(5, 6, 9, 0.82) 100%),
    linear-gradient(180deg, rgba(5, 6, 9, 0.02) 0%, rgba(5, 6, 9, 0.3) 44%, rgba(5, 6, 9, 0.8) 76%, #050609 100%),
    url("assets/eternal-store-hero.png");
  background-position: center top;
  background-size: cover;
  filter: saturate(1.12) brightness(1.16) contrast(1.04);
  opacity: 0.82;
}

.site-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 211, 112, 0.2), transparent 18rem),
    radial-gradient(circle at 78% 12%, rgba(214, 170, 75, 0.18), transparent 28rem),
    linear-gradient(180deg, transparent 0%, rgba(5, 6, 9, 0.34) 38%, #050609 88%);
}

body.drawer-open {
  overflow: hidden;
}

body.quick-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

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

#starfield {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  opacity: 0.62;
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateX(-50%);
}

.home-pack-header {
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0;
  background: linear-gradient(180deg, rgba(5, 6, 9, 0.9), rgba(5, 6, 9, 0.5), transparent);
  backdrop-filter: blur(8px);
  transform: none;
}

.home-pack-nav {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: auto;
}

.home-pack-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.home-pack-brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 225, 154, 0.48);
  border-radius: 8px;
  object-fit: cover;
}

.home-pack-brand strong,
.home-pack-brand small {
  display: block;
  line-height: 1;
}

.home-pack-brand strong {
  font-size: 1rem;
}

.home-pack-brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
}

.home-pack-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.home-pack-links a {
  transition: color 160ms ease, text-shadow 160ms ease;
}

.home-pack-links a:hover,
.home-pack-links a.active {
  color: var(--gold-bright);
}

.home-pack-links a.active {
  text-shadow: 0 0 18px rgba(255, 227, 161, 0.24);
}

.home-nav-tag {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 225, 154, 0.25);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  overflow: hidden;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(214, 170, 75, 0.7);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(214, 170, 75, 0.28), rgba(255, 255, 255, 0.04));
  color: var(--gold-bright);
  font-weight: 800;
  box-shadow: inset 0 0 18px rgba(214, 170, 75, 0.18);
}

.brand-mark img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
}

.desktop-nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.desktop-nav a:hover,
.ghost-link:hover {
  color: var(--gold-bright);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.045);
  color: #d9d2bf;
  font-size: 0.8rem;
  font-weight: 800;
}

.ghost-link {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.icon-button {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.icon-button:hover {
  border-color: rgba(214, 170, 75, 0.6);
  background: rgba(214, 170, 75, 0.1);
  transform: translateY(-1px);
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 0.68rem;
  font-weight: 800;
}

.hero {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 124px 0 72px;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  gap: 58px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(3.7rem, 9vw, 8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-text {
  max-width: 570px;
  margin-bottom: 30px;
  color: #d5d0c2;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.6;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-button {
  padding: 0 20px;
  border: 1px solid rgba(255, 227, 161, 0.72);
  background: linear-gradient(135deg, #f7d27c, #a87320);
  color: #101010;
  box-shadow: 0 18px 40px rgba(214, 170, 75, 0.2);
}

.secondary-button {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

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

.hero-visual {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 45%, rgba(214, 170, 75, 0.22), transparent 19rem),
    radial-gradient(circle at 84% 68%, rgba(87, 214, 201, 0.08), transparent 15rem),
    linear-gradient(180deg, transparent, rgba(5, 6, 9, 0.2));
  filter: blur(2px);
  animation: ambientPulse 7s ease-in-out infinite;
}

.hero-poster {
  display: none;
}

.hud-panel {
  border: 1px solid rgba(255, 227, 161, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 42%),
    rgba(13, 16, 22, 0.6);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46), 0 0 50px rgba(214, 170, 75, 0.08);
  backdrop-filter: blur(18px) saturate(1.12);
}

.main-panel {
  position: absolute;
  inset: 54px 30px auto auto;
  z-index: 1;
  width: min(500px, 88%);
  min-height: 470px;
  overflow: hidden;
  padding: 22px;
  transform: rotateY(-7deg) rotateX(3deg) translateZ(18px);
  animation: floatPanel 6s ease-in-out infinite;
}

.main-panel::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  pointer-events: none;
  box-shadow: inset 0 0 45px rgba(255, 227, 161, 0.035);
}

.main-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.panel-topline {
  position: relative;
  display: flex;
  gap: 8px;
  margin-bottom: 58px;
}

.panel-topline span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.scanner {
  position: absolute;
  top: 92px;
  left: 8%;
  width: 84%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 24px rgba(255, 227, 161, 0.75);
  animation: scan 3.2s linear infinite;
}

.module-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.module {
  min-height: 116px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.module strong,
.module small {
  display: block;
}

.module strong {
  margin-bottom: 34px;
}

.module small {
  color: var(--muted);
}

.module.active {
  border-color: rgba(214, 170, 75, 0.55);
  background: rgba(214, 170, 75, 0.1);
}

.featured-offer {
  position: relative;
  z-index: 2;
}

.offer-copy {
  display: grid;
  gap: 12px;
  min-height: 286px;
  align-content: center;
  padding: 10px 4px 0;
}

.offer-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.offer-kicker > span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.discount-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 227, 161, 0.62);
  border-radius: 999px;
  padding: 0 11px;
  background: linear-gradient(135deg, rgba(255, 227, 161, 0.22), rgba(168, 115, 32, 0.28));
  color: var(--gold-bright);
  box-shadow: 0 0 24px rgba(214, 170, 75, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
}

.offer-copy strong {
  max-width: 13ch;
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  line-height: 0.94;
}

.offer-script-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.offer-script-list span {
  overflow: hidden;
  padding: 8px 10px;
  border-left: 2px solid var(--gold);
  background: rgba(214, 170, 75, 0.07);
  color: #e8dfcb;
  font-size: 0.76rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-copy p {
  max-width: 430px;
  margin-bottom: 0;
  color: #d5d0c2;
  line-height: 1.6;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.offer-price span {
  color: var(--gold-bright);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
}

.offer-price s {
  color: rgba(247, 243, 232, 0.5);
  font-size: 1.15rem;
  font-weight: 800;
}

.offer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-features span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.045);
  color: #d0c9ba;
  font-size: 0.75rem;
  font-weight: 800;
}

.offer-button {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 227, 161, 0.66);
  border-radius: 8px;
  padding: 0 16px;
  background: linear-gradient(135deg, #f7d27c, #a87320);
  color: #101010;
  box-shadow: 0 18px 40px rgba(214, 170, 75, 0.18);
  font-weight: 900;
}

.offer-enter {
  animation: offerEnter 520ms ease both;
}

.offer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.offer-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.offer-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.offer-dots button.active {
  width: 24px;
  background: var(--gold);
}

.side-panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  z-index: 2;
  width: min(290px, 58%);
  padding: 20px;
  transform: rotateY(-9deg);
  animation: floatPanel 7s ease-in-out -1.2s infinite;
}

.pulse-panel {
  position: absolute;
  left: 18px;
  bottom: 36px;
  z-index: 2;
  width: 170px;
  padding: 16px;
  transform: rotateY(-7deg);
  animation: floatPanel 7.5s ease-in-out -2s infinite;
}

.pulse-panel::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #57d6c9;
  box-shadow: 0 0 18px rgba(87, 214, 201, 0.85);
}

.pulse-panel span,
.pulse-panel strong,
.pulse-panel small {
  display: block;
}

.pulse-panel span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pulse-panel strong {
  margin: 6px 0 2px;
  color: var(--gold-bright);
  font-size: 2rem;
}

.pulse-panel small {
  color: var(--muted);
}

.gold-chip {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(214, 170, 75, 0.6);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.side-panel strong,
.side-panel small {
  display: block;
}

.side-panel strong {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.side-panel small {
  color: var(--muted);
  line-height: 1.5;
}

.metric-strip,
.store-section,
.bundle-band,
.support-section,
.social-section,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: -18px;
  border: 1px solid rgba(255, 227, 161, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.metric-strip div {
  padding: 24px;
  background: rgba(16, 19, 26, 0.56);
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 1.35rem;
}

.metric-strip span {
  color: var(--muted);
}

.store-section,
.support-section {
  padding: 110px 0 0;
}

.store-section {
  position: relative;
}

.store-section::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: calc(100% + 180px);
  background:
    linear-gradient(180deg, rgba(5, 6, 9, 0.7), rgba(5, 6, 9, 0.92) 26%, #050609 100%),
    radial-gradient(circle at 70% 0%, rgba(214, 170, 75, 0.13), transparent 32rem);
  transform: translateX(-50%);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.store-tools {
  display: flex;
  max-width: 420px;
  align-items: end;
  justify-content: end;
  flex-wrap: wrap;
  gap: 12px;
}

.search-field,
.sort-field {
  display: grid;
  gap: 8px;
}

.search-field span,
.sort-field span {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-input,
.sort-select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 19, 26, 0.78);
  color: var(--text);
  outline: none;
  padding: 0 12px;
}

.search-input {
  min-width: 230px;
}

.sort-select {
  min-width: 132px;
  cursor: pointer;
}

.search-input:focus,
.sort-select:focus {
  border-color: rgba(214, 170, 75, 0.64);
  box-shadow: 0 0 0 3px rgba(214, 170, 75, 0.12);
}

.store-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 19, 26, 0.74);
  backdrop-filter: blur(16px);
}

.filter-group {
  display: grid;
  gap: 10px;
}

.filter-group + .filter-group {
  margin-top: 24px;
}

.filter-group span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.filter,
.filter-group label {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.filter {
  position: relative;
  overflow: hidden;
  min-height: 62px;
  padding: 10px;
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.filter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 227, 161, 0.15) 46%, transparent 72%);
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 180ms ease, transform 420ms ease;
}

.filter.active,
.filter:hover {
  border-color: rgba(214, 170, 75, 0.42);
  background: rgba(214, 170, 75, 0.09);
  color: var(--text);
  transform: translateX(4px);
}

.filter.active::before,
.filter:hover::before {
  opacity: 1;
  transform: translateX(70%);
}

.category-icon {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 227, 161, 0.44);
  border-radius: 8px;
  background: rgba(7, 8, 11, 0.48);
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: inset 0 0 18px rgba(214, 170, 75, 0.12);
}

.category-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
}

.category-copy strong {
  color: var(--text);
  font-size: 0.96rem;
}

.category-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.filter.active .category-icon {
  background: linear-gradient(135deg, rgba(255, 227, 161, 0.28), rgba(168, 115, 32, 0.16));
  box-shadow: 0 0 22px rgba(214, 170, 75, 0.22);
}

.filter-group input {
  accent-color: var(--gold);
}

.filter-note {
  margin-top: 24px;
  padding: 14px;
  border: 1px solid rgba(214, 170, 75, 0.28);
  border-radius: 8px;
  background: rgba(214, 170, 75, 0.08);
}

.filter-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
}

.filter-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 19, 26, 0.76);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(214, 170, 75, 0.42);
  transform: translateY(-4px);
}

.product-card:hover .product-icon {
  transform: scale(1.05);
}

.product-art {
  position: relative;
  display: grid;
  height: 180px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(214, 170, 75, 0.18), rgba(87, 214, 201, 0.11), rgba(226, 93, 93, 0.1));
}

.product-art::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  transform: rotate(45deg);
}

.product-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44px;
  background: linear-gradient(transparent, rgba(7, 8, 11, 0.7));
}

.product-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-icon.has-media {
  opacity: 0;
}

.quick-media-link {
  display: inline-flex;
  margin-bottom: 15px;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 800;
}

.status-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(255, 227, 161, 0.44);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(7, 8, 11, 0.56);
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(255, 227, 161, 0.56);
  border-radius: 8px;
  background: rgba(7, 8, 11, 0.42);
  color: var(--gold-bright);
  font-size: 2rem;
  font-weight: 900;
  transition: transform 180ms ease;
}

.product-body {
  padding: 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.product-body p {
  min-height: 68px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 29px;
  margin-bottom: 18px;
}

.tag-row span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 9px;
  color: #c9c3b5;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-actions {
  display: flex;
  gap: 8px;
}

.price {
  color: var(--gold-bright);
  font-size: 1.2rem;
  font-weight: 900;
}

.add-button,
.details-button,
.remove-item {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(214, 170, 75, 0.54);
  border-radius: 8px;
  background: rgba(214, 170, 75, 0.1);
  color: var(--gold-bright);
  cursor: pointer;
  font-weight: 800;
}

.details-button {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.add-button:hover,
.details-button:hover,
.remove-item:hover {
  background: rgba(214, 170, 75, 0.18);
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 250px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 19, 26, 0.72);
}

.empty-state strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.empty-state p {
  color: var(--muted);
}

.bundle-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 96px;
  padding: 34px;
  border: 1px solid rgba(214, 170, 75, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 170, 75, 0.18), transparent 58%),
    rgba(16, 19, 26, 0.78);
}

.bundle-band p {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.support-section {
  padding-bottom: 70px;
}

.support-section > div:first-child {
  margin-bottom: 28px;
}

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

.support-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 19, 26, 0.72);
}

.support-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold-bright);
  font-weight: 900;
}

.support-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.support-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.social-section {
  padding: 96px 0 86px;
}

.bundle-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0 0;
  scroll-margin-top: 90px;
}

.bundle-heading {
  align-items: center;
}

.bundle-heading > div > p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.support-callout {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 90px auto 48px;
  padding: 30px 32px;
  border: 1px solid rgba(255, 227, 161, 0.22);
  border-radius: 8px;
  background: rgba(16, 19, 26, 0.48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.support-callout h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.support-callout p:not(.eyebrow) {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.support-callout .secondary-button {
  flex: 0 0 auto;
}

.social-section > div:first-child {
  margin-bottom: 28px;
}

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

.social-link {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 19, 26, 0.72);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.social-link:hover {
  border-color: rgba(214, 170, 75, 0.52);
  background: rgba(214, 170, 75, 0.09);
  transform: translateY(-3px);
}

.social-link > span {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 227, 161, 0.44);
  border-radius: 8px;
  color: var(--gold-bright);
  font-weight: 900;
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-link div {
  display: grid;
  align-content: center;
  gap: 3px;
}

.social-link div,
.social-link strong,
.social-link small {
  min-width: 0;
}

.social-link strong,
.social-link small {
  display: block;
}

.social-link small {
  margin-top: 0;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: flex;
  width: min(420px, 100%);
  height: 100vh;
  flex-direction: column;
  padding: 20px;
  border-left: 1px solid var(--line);
  background: rgba(10, 12, 17, 0.95);
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.42);
  transform: translateX(104%);
  transition: transform 240ms ease;
}

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

.overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.54);
  opacity: 0;
  transition: opacity 220ms ease;
}

.drawer-open .overlay,
.quick-open .overlay {
  pointer-events: auto;
  opacity: 1;
}

.cart-header,
.cart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-header strong {
  font-size: 1.5rem;
}

.cart-items {
  display: grid;
  flex: 1;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  padding: 20px 0;
}

.cart-empty {
  color: var(--muted);
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.cart-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-item-side {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.remove-item {
  min-height: 30px;
  padding: 0 9px;
  border-color: rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--muted);
  font-size: 0.74rem;
}

.quick-view {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: center;
  padding: 18px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.quick-open .quick-view {
  pointer-events: auto;
  opacity: 1;
}

.quick-view-card {
  position: relative;
  display: grid;
  width: min(1040px, 100%);
  max-height: calc(100vh - 36px);
  overflow: hidden;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid rgba(214, 170, 75, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 170, 75, 0.14), transparent 42%),
    rgba(12, 14, 20, 0.98);
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

.quick-open .quick-view-card {
  transform: translateY(0) scale(1);
}

.close-quick-view {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.quick-art {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(214, 170, 75, 0.16), rgba(87, 214, 201, 0.08));
  background-size: 42px 42px, 42px 42px, auto;
}

.quick-art::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 227, 161, 0.35);
  border-radius: 8px;
  transform: rotate(45deg);
}

.quick-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 1px solid rgba(255, 227, 161, 0.64);
  border-radius: 8px;
  background: rgba(7, 8, 11, 0.48);
  color: var(--gold-bright);
  font-size: 3.2rem;
  font-weight: 900;
}

.quick-logo {
  position: relative;
  z-index: 1;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(255, 227, 161, 0.64);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.quick-copy {
  overflow-y: auto;
  padding: 44px 34px;
}

.quick-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.quick-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.quick-specs {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.quick-specs span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #d8d2c4;
  font-weight: 800;
}

.quick-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.quick-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  margin: 0 0 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
  scrollbar-width: none;
}

.quick-tabs button {
  min-height: 36px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 6px;
  padding: 0 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.quick-tabs button:hover,
.quick-tabs button.active {
  background: rgba(214, 170, 75, 0.12);
  color: var(--gold-bright);
}

.quick-panel {
  display: none;
  min-height: 210px;
}

.quick-panel.active {
  display: block;
}

.modal-empty {
  border-left: 2px solid var(--gold);
  padding: 13px 15px;
  background: rgba(214, 170, 75, 0.06);
  font-size: 0.82rem !important;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.video-gallery video,
.video-link-card {
  width: 100%;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.video-gallery video {
  object-fit: cover;
}

.video-link-card {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  padding: 16px;
}

.video-link-card strong,
.video-link-card span {
  display: block;
}

.video-link-card strong { color: var(--gold-bright); font-size: 0.82rem; }
.video-link-card span { margin-top: 6px; color: var(--muted); font-size: 0.7rem; }

.review-list,
.changelog-list,
.faq-list {
  display: grid;
}

.review-list article,
.changelog-list article,
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.review-list article:first-child,
.changelog-list article:first-child,
.faq-list details:first-child { padding-top: 0; }

.review-list article > div,
.changelog-list article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.review-list span { color: var(--gold-bright); font-size: 0.72rem; }
.review-list p,
.changelog-list p,
.faq-list p { margin: 8px 0 0; font-size: 0.78rem !important; }
.changelog-list time { color: var(--muted); font-size: 0.68rem; }
.faq-list summary { color: #ddd7c8; cursor: pointer; font-size: 0.8rem; font-weight: 800; }

.discord-support-button {
  border-color: rgba(88, 101, 242, 0.45);
}

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

.cart-footer span,
.cart-footer strong {
  display: block;
}

.cart-footer span {
  margin-bottom: 4px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span:first-child {
  color: var(--text);
  font-weight: 900;
}

@keyframes floatPanel {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -16px;
  }
}

@keyframes scan {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(330px);
  }
}

@keyframes offerEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambientPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.support-page {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 148px 0 80px;
}

.support-hero {
  max-width: 820px;
  margin-bottom: 48px;
}

.support-hero h1 {
  max-width: none;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
}

.support-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.catalog-page {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 148px 0 90px;
}

.scripts-page .store-section {
  width: 100%;
  padding-top: 0;
}

.scripts-page .store-section::before {
  top: -24px;
}

.catalog-hero {
  max-width: 850px;
  margin-bottom: 46px;
}

.catalog-hero h1 {
  max-width: none;
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.catalog-hero > p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.bundle-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 227, 161, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.bundle-summary div {
  padding: 20px;
  background: rgba(16, 19, 26, 0.58);
}

.bundle-summary strong,
.bundle-summary span {
  display: block;
}

.bundle-summary strong {
  margin-bottom: 8px;
  color: var(--gold-bright);
}

.bundle-summary span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.bundle-card {
  display: grid;
  min-height: 520px;
  align-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 19, 26, 0.68);
  backdrop-filter: blur(16px);
}

.bundle-card.featured {
  border-color: rgba(255, 227, 161, 0.38);
  background: linear-gradient(145deg, rgba(214, 170, 75, 0.15), rgba(16, 19, 26, 0.68) 46%);
}

.bundle-card h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.bundle-card p,
.bundle-card li {
  color: var(--muted);
  line-height: 1.7;
}

.bundle-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.bundle-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bundle-card-footer .primary-button,
.bundle-card-footer .secondary-button {
  min-width: 132px;
  text-align: center;
}

.bundle-note {
  display: grid;
  justify-items: start;
  margin-top: 22px;
  padding: 30px;
  border: 1px solid rgba(255, 227, 161, 0.2);
  border-radius: 8px;
  background: linear-gradient(120deg, rgba(214, 170, 75, 0.12), rgba(16, 19, 26, 0.62) 48%);
  backdrop-filter: blur(16px);
}

.bundle-note h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.bundle-note > p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.bundle-card-footer > strong {
  color: var(--gold-bright);
  font-size: 2rem;
}

.bundle-card-footer s {
  color: var(--muted);
  font-size: 1rem;
}

.docs-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.docs-nav {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 19, 26, 0.7);
  backdrop-filter: blur(16px);
}

.docs-nav strong {
  margin-bottom: 8px;
  color: var(--gold-bright);
}

.doc-category {
  margin: 13px 10px 3px;
  color: rgba(255, 227, 161, 0.62);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.docs-nav a {
  padding: 10px;
  border-radius: 6px;
  color: var(--muted);
}

.doc-nav-button {
  display: flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.doc-nav-button:hover,
.doc-nav-button.active {
  border-color: rgba(214, 170, 75, 0.3);
  background: rgba(214, 170, 75, 0.1);
  color: var(--gold-bright);
}

.docs-nav a:hover {
  background: rgba(214, 170, 75, 0.1);
  color: var(--text);
}

.docs-content {
  display: grid;
  gap: 18px;
}

.docs-content article {
  scroll-margin-top: 110px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 19, 26, 0.68);
  backdrop-filter: blur(16px);
}

.docs-content .doc-panel {
  display: none;
}

.docs-content .doc-panel:target,
.docs-content:not(:has(.doc-panel:target)) #general {
  display: block;
}

.doc-enter {
  animation: offerEnter 360ms ease both;
}

.doc-intro {
  max-width: 820px;
  font-size: 1.02rem;
}

.doc-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.doc-section-grid section {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.doc-section-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-bright);
}

.doc-section-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.docs-content h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.docs-content article > p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.doc-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.doc-steps span {
  padding: 12px;
  border-left: 2px solid var(--gold);
  background: rgba(214, 170, 75, 0.07);
  color: #ded6c5;
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 920px) {
  .desktop-nav,
  .ghost-link,
  .home-pack-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 112px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .main-panel {
    inset: 18px 0 0 0;
    width: min(560px, 92%);
  }

  .offer-copy strong {
    max-width: 12ch;
  }

  .metric-strip,
  .product-grid,
  .support-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-heading,
  .store-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .search-input,
  .sort-select {
    min-width: 0;
  }

  .filters {
    position: static;
  }

  .filter-group:first-child {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .filter-group:first-child span {
    grid-column: 1 / -1;
  }

  .quick-view-card {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

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

  .bundle-summary {
    grid-template-columns: 1fr;
  }

  .docs-layout {
    grid-template-columns: 1fr;
  }

  .docs-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-art {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: 100%;
    height: 66px;
    border-right: 0;
    border-left: 0;
  }

  .brand small {
    display: none;
  }

  .home-pack-nav {
    min-height: 72px;
  }

  .home-pack-brand small {
    display: none;
  }

  .home-nav-tag {
    min-height: 38px;
    padding: 0 11px;
    font-size: 0.68rem;
  }

  .hero {
    width: min(100% - 24px, 1180px);
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(3.45rem, 19vw, 5rem);
  }

  .hero-actions,
  .bundle-band,
  .support-callout,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .support-callout {
    margin-top: 68px;
    padding: 24px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .main-panel {
    inset: 72px 10px auto 10px;
    width: auto;
    padding: 16px;
    transform: none;
  }

  .offer-copy {
    min-height: 250px;
    gap: 10px;
  }

  .offer-copy p,
  .offer-features {
    display: none;
  }

  .side-panel {
    right: 10px;
    bottom: 20px;
    width: 70%;
    transform: none;
  }

  .pulse-panel {
    left: 10px;
    bottom: 114px;
    width: 150px;
    transform: none;
  }

  .metric-strip,
  .product-grid,
  .support-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .offer-script-list {
    grid-template-columns: 1fr;
  }

  .store-section,
  .bundle-section,
  .support-section {
    padding-top: 76px;
  }

  .filter-group:first-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-footer,
  .product-actions,
  .quick-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .details-button,
  .add-button {
    width: 100%;
  }

  .bundle-band {
    margin-top: 72px;
    padding: 24px;
  }

  .bundle-card-footer,
  .doc-steps,
  .doc-section-grid {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .bundle-card-footer {
    flex-direction: column;
  }

  .quick-copy {
    padding: 30px 18px 22px;
  }

  .video-gallery {
    grid-template-columns: 1fr;
  }

  .quick-art {
    min-height: 210px;
  }

  .quick-icon {
    width: 92px;
    height: 92px;
    font-size: 2.4rem;
  }

  .quick-logo {
    width: 102px;
    height: 102px;
  }
}
