:root {
  color-scheme: dark;
  --ink: #f3efe1;
  --muted: #9fb8af;
  --panel: #0a1d19;
  --panel-strong: #10231f;
  --page: #06120f;
  --line: #235a4d;
  --teal: #5df2c1;
  --teal-dark: #35c89d;
  --coral: #ff8a70;
  --amber: #e1aa4d;
  --steel: #16352f;
  --charcoal: #06120f;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
  --hero-background-image: url("./assets/hero/live-foh-background.png");
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 8%, rgba(93, 242, 193, 0.14), transparent 34rem),
    linear-gradient(180deg, #06120f 0, #0a231f 44rem, #071613 100%),
    var(--page);
  color: var(--ink);
}

body.drawer-open,
body.preview-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

.icon-sprite {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto 48px;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 38px);
  border-bottom: 1px solid rgba(93, 242, 193, 0.16);
  background: rgba(6, 18, 15, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 168px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: transparent;
  overflow: visible;
}

.brand-mark img {
  width: 164px;
  height: auto;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.38));
}

.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.hero-logo {
  display: block;
  width: min(260px, 62vw);
  margin: 0 0 22px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(93, 242, 193, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.main-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(93, 242, 193, 0.12);
  color: var(--ink);
  outline: none;
}

.language-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(93, 242, 193, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switch button {
  min-width: 38px;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.language-switch button.active,
.language-switch button:hover,
.language-switch button:focus-visible {
  background: var(--teal);
  color: #06120f;
  outline: none;
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(93, 242, 193, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.icon-button svg,
.primary-button svg,
.secondary-button svg,
.search-box svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  border: 2px solid var(--page);
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 17px;
}

main {
  overflow: hidden;
}

.storefront {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(26px, 5vw, 70px);
  min-height: min(760px, calc(100vh - 74px));
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 76px) clamp(16px, 4vw, 38px) 28px;
  align-items: center;
  isolation: isolate;
}

.storefront::before {
  content: "";
  position: absolute;
  inset: 0 calc((100vw - 100%) / -2);
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 18, 15, 0.72) 0%, rgba(6, 18, 15, 0.48) 42%, rgba(6, 18, 15, 0.1) 70%, rgba(6, 18, 15, 0.2) 100%),
    linear-gradient(180deg, rgba(6, 18, 15, 0.02) 0%, rgba(6, 18, 15, 0.66) 100%),
    var(--hero-background-image) 62% center / cover no-repeat;
}

.storefront::after {
  content: "";
  position: absolute;
  inset: auto calc((100vw - 100%) / -2) 0;
  z-index: -1;
  height: 140px;
  background: linear-gradient(180deg, rgba(6, 18, 15, 0), rgba(6, 18, 15, 0.88) 72%, var(--page));
  pointer-events: none;
}

.storefront-copy,
.live-visual {
  position: relative;
  z-index: 1;
}

.storefront-copy {
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.72);
}

.storefront h1,
.section-heading h2,
.support-copy h2,
.cart-header h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

.storefront h1 {
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
}

.storefront-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: #c7d9d2;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.storefront-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.primary-button {
  border: 1px solid var(--teal);
  background: var(--teal);
  color: #06120f;
  box-shadow: 0 12px 28px rgba(93, 242, 193, 0.18);
}

.secondary-button {
  border: 1px solid rgba(93, 242, 193, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.primary-button:hover,
.secondary-button:hover,
.primary-button:focus-visible,
.secondary-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: #7bffd2;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: rgba(93, 242, 193, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.storefront-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: 32px 0 0;
}

.storefront-stats div {
  border-top: 3px solid var(--teal);
  padding-top: 10px;
}

.storefront-stats dt {
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  font-weight: 900;
}

.storefront-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.live-visual {
  position: relative;
  min-height: clamp(420px, 58vw, 630px);
  isolation: isolate;
}

.preview-trigger {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: zoom-in;
}

.preview-trigger:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.eq-bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 8px;
  height: 180px;
  margin-top: 28px;
}

.eq-bars span {
  min-width: 0;
  height: var(--bar);
  border-radius: 5px 5px 0 0;
  background: var(--teal);
}

.eq-bars span:nth-child(3n) {
  background: var(--amber);
}

.eq-bars span:nth-child(4n) {
  background: var(--steel);
}

.waveform {
  position: relative;
  height: 82px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 8px;
  background: #202327;
}

.waveform span {
  position: absolute;
  inset: 50% auto auto 0;
  width: 140%;
  height: 2px;
  background: var(--coral);
  transform-origin: left center;
}

.waveform span:nth-child(1) {
  transform: translateY(-24px) rotate(3deg);
}

.waveform span:nth-child(2) {
  transform: translateY(-10px) rotate(-2deg);
}

.waveform span:nth-child(3) {
  transform: translateY(6px) rotate(2deg);
  background: var(--amber);
}

.waveform span:nth-child(4) {
  transform: translateY(19px) rotate(-3deg);
}

.waveform span:nth-child(5) {
  transform: translateY(30px) rotate(2deg);
  background: var(--teal);
}

.catalogue-section,
.live-section,
.packs-section,
.compare-section,
.support-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px clamp(16px, 4vw, 38px);
}

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

.live-card {
  min-height: 220px;
  border: 1px solid rgba(93, 242, 193, 0.16);
  border-radius: 8px;
  background: rgba(10, 29, 25, 0.76);
  padding: 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.live-card span {
  display: inline-flex;
  margin-bottom: 28px;
  border: 1px solid rgba(93, 242, 193, 0.24);
  border-radius: 6px;
  padding: 6px 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.14;
}

.live-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.52;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.72fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading h2,
.support-copy h2,
.cart-header h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.section-heading p:last-child,
.support-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

code {
  border: 1px solid rgba(93, 242, 193, 0.18);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  padding: 0.1em 0.35em;
  font-size: 0.9em;
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(93, 242, 193, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0 14px;
  color: var(--muted);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
}

.segmented-control {
  display: flex;
  overflow: auto;
  gap: 4px;
  min-height: 48px;
  padding: 4px;
  border: 1px solid rgba(93, 242, 193, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.segmented-control button {
  flex: 1 0 auto;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  padding: 9px 12px;
  font-weight: 800;
}

.segmented-control button.active,
.segmented-control button:hover,
.segmented-control button:focus-visible {
  background: var(--teal);
  color: #06120f;
  outline: none;
}

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

.product-card {
  display: flex;
  min-height: 490px;
  flex-direction: column;
  border: 1px solid rgba(93, 242, 193, 0.14);
  border-radius: 8px;
  background: rgba(10, 29, 25, 0.84);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 245px;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.18)),
    var(--product-color, var(--teal));
  padding: 18px;
}

.product-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.32));
}

.plugin-screenshot {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: contain;
  border-radius: 8px;
  background: #06120f;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.48);
}

.screenshot-trigger {
  display: grid;
  min-height: 196px;
  place-items: stretch;
}

.product-mark {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(93, 242, 193, 0.18);
  border-radius: 8px;
  background: rgba(8, 11, 14, 0.68);
  backdrop-filter: blur(8px);
}

.plugin-badge {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.plugin-preview {
  width: min(100%, 260px);
  aspect-ratio: 1.48;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #11161b;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
  color: #fff;
  overflow: hidden;
}

.preview-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preview-topline span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-topline strong {
  color: var(--amber);
  font-size: 0.68rem;
}

.preview-body {
  position: relative;
  height: calc(100% - 36px);
  padding: 14px 12px 12px;
}

.preview-bars,
.preview-channels,
.preview-reduction {
  position: absolute;
  inset: 14px 12px 12px;
  display: grid;
  align-items: end;
  gap: 5px;
}

.preview-bars {
  grid-template-columns: repeat(12, 1fr);
}

.preview-bars span {
  min-width: 0;
  height: var(--bar);
  border-radius: 3px 3px 0 0;
  background: var(--teal);
}

.preview-bars span:nth-child(3n) {
  background: var(--amber);
}

.preview-channels {
  grid-template-columns: repeat(5, 1fr);
}

.preview-channels span {
  position: relative;
  min-width: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.11);
}

.preview-channels span::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: var(--level);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--amber), var(--teal));
}

.preview-reduction {
  grid-template-columns: repeat(10, 1fr);
}

.preview-reduction span {
  min-width: 0;
  height: var(--gain);
  border-radius: 0 0 4px 4px;
  background: var(--coral);
  align-self: start;
}

.preview-scope {
  position: absolute;
  inset: auto 12px 18px;
  height: 58px;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.preview-scope span {
  position: absolute;
  left: -12%;
  width: 124%;
  height: 2px;
  background: var(--teal);
  transform-origin: left center;
}

.preview-scope span:nth-child(1) {
  top: 24%;
  transform: rotate(4deg);
}

.preview-scope span:nth-child(2) {
  top: 48%;
  background: var(--amber);
  transform: rotate(-3deg);
}

.preview-scope span:nth-child(3) {
  top: 70%;
  transform: rotate(3deg);
}

.plugin-preview--mixer .preview-bars,
.plugin-preview--mixer .preview-reduction,
.plugin-preview--mixer .preview-scope,
.plugin-preview--routing .preview-bars,
.plugin-preview--routing .preview-reduction,
.plugin-preview--tilt .preview-bars,
.plugin-preview--tilt .preview-channels,
.plugin-preview--tilt .preview-reduction,
.plugin-preview--eq .preview-channels,
.plugin-preview--eq .preview-reduction,
.plugin-preview--eq .preview-scope,
.plugin-preview--compressor .preview-bars,
.plugin-preview--compressor .preview-channels,
.plugin-preview--compressor .preview-scope,
.plugin-preview--multiband .preview-channels,
.plugin-preview--multiband .preview-scope,
.plugin-preview--signal .preview-bars,
.plugin-preview--signal .preview-channels,
.plugin-preview--signal .preview-reduction,
.plugin-preview--impulse .preview-bars,
.plugin-preview--impulse .preview-channels,
.plugin-preview--impulse .preview-reduction {
  display: none;
}

.format-row {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  gap: 6px;
}

.format-row span,
.tag-list span {
  border-radius: 6px;
  background: rgba(93, 242, 193, 0.12);
  padding: 5px 7px;
  color: #dff9ef;
  font-size: 0.72rem;
  font-weight: 900;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 17px;
}

.product-card h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.12;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.tag-list span {
  background: rgba(255, 255, 255, 0.07);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.price-row strong {
  font-size: 1.28rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
}

.product-actions .secondary-button,
.product-actions .primary-button {
  width: 100%;
  padding-inline: 12px;
}

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

.pack-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(93, 242, 193, 0.16);
  border-radius: 8px;
  background: rgba(10, 29, 25, 0.84);
  padding: 22px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.pack-card:nth-child(2) {
  background: rgba(16, 35, 31, 0.96);
  color: #fff;
}

.pack-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.72);
}

.pack-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.12;
}

.pack-card p {
  color: var(--muted);
  line-height: 1.52;
}

.pack-label {
  margin: 0 0 12px;
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(93, 242, 193, 0.16);
  border-radius: 8px;
  background: rgba(10, 29, 25, 0.84);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: #a9c6bd;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

td:first-child {
  font-weight: 900;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(93, 242, 193, 0.16);
  border-radius: 8px;
  background: rgba(10, 29, 25, 0.84);
  padding: 20px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(93, 242, 193, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  padding: 12px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(93, 242, 193, 0.14);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  justify-content: end;
  background: rgba(21, 21, 21, 0);
  pointer-events: none;
  transition: background 180ms ease;
}

.cart-drawer.is-open {
  background: rgba(0, 0, 0, 0.62);
  pointer-events: auto;
}

.cart-panel {
  display: flex;
  width: min(100vw, 460px);
  height: 100%;
  flex-direction: column;
  gap: 18px;
  background: #071613;
  padding: 22px;
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

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

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

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

.cart-empty {
  border: 1px dashed rgba(93, 242, 193, 0.24);
  border-radius: 8px;
  padding: 22px;
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.cart-item h3 {
  margin: 0;
  font-size: 1rem;
}

.cart-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(93, 242, 193, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.cart-summary {
  display: grid;
  gap: 14px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.1rem;
}

.cart-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  padding: clamp(12px, 2.5vw, 30px);
  pointer-events: none;
  transition:
    background 180ms ease,
    opacity 180ms ease;
}

.media-lightbox.is-open {
  background: rgba(0, 0, 0, 0.78);
  opacity: 1;
  pointer-events: auto;
}

.media-lightbox-panel {
  display: grid;
  width: min(96vw, 1320px);
  max-height: 94vh;
  gap: 14px;
  border: 1px solid rgba(93, 242, 193, 0.2);
  border-radius: 8px;
  background: #071613;
  padding: clamp(14px, 2vw, 22px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.58);
  transform: translateY(10px) scale(0.985);
  transition: transform 180ms ease;
}

.media-lightbox.is-open .media-lightbox-panel {
  transform: translateY(0) scale(1);
}

.media-lightbox-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.media-lightbox-header h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.6vw, 2.2rem);
  line-height: 1.04;
}

.media-lightbox-frame {
  display: grid;
  place-items: center;
  min-height: 0;
  border: 1px solid rgba(93, 242, 193, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    #06120f;
  overflow: hidden;
}

.media-lightbox-frame img {
  display: block;
  width: 100%;
  height: min(74vh, 900px);
  object-fit: contain;
}

.media-lightbox-link {
  justify-self: end;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 800;
}

.media-lightbox-link:hover,
.media-lightbox-link:focus-visible {
  color: #7bffd2;
  outline: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px clamp(16px, 4vw, 38px) 42px;
  border-top: 1px solid rgba(93, 242, 193, 0.16);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto 48px;
  }

  .main-nav {
    display: none;
  }

  .storefront,
  .section-heading,
  .shop-toolbar,
  .support-section {
    grid-template-columns: 1fr;
  }

  .storefront {
    min-height: auto;
  }

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

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

@media (max-width: 620px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand small {
    display: none;
  }

  .storefront {
    padding-top: 28px;
  }

  .storefront h1 {
    font-size: clamp(3rem, 19vw, 4.6rem);
  }

  .storefront-actions,
  .storefront-actions .primary-button,
  .storefront-actions .secondary-button {
    width: 100%;
  }

  .storefront-stats {
    grid-template-columns: 1fr;
  }

  .live-visual {
    display: none;
  }

  .eq-bars {
    height: 130px;
  }

  .product-grid,
  .pack-grid,
  .live-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .media-lightbox {
    padding: 8px;
  }

  .media-lightbox-panel {
    width: 100%;
    max-height: 96vh;
  }

  .media-lightbox-frame img {
    height: 68vh;
  }

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