@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --shop-bg: #101213;
  --shop-panel: rgba(20, 22, 23, .78);
  --shop-line: rgba(255, 255, 255, .085);
  --shop-text: #f5f3ed;
  --shop-muted: rgba(245, 243, 237, .62);
  --shop-soft: rgba(245, 243, 237, .38);
  --shop-yellow: #f3c74f;
  --shop-blue: #7ccfff;
  --shop-font: "Geist", "Aptos", "Segoe UI", sans-serif;
  --shop-display: "Space Grotesk", "Geist", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.market-page {
  min-height: 100%;
  margin: 0;
  color: var(--shop-text);
  font-family: var(--shop-font);
  background:
    linear-gradient(rgba(10, 12, 13, .72), rgba(10, 12, 13, .82)),
    url("../assets/home2-cosmic-hero.jpg") center top / cover fixed,
    #0c0e0f;
}

body.market-page::before {
  content: "";
  position: fixed;
  inset: -28px;
  z-index: -1;
  pointer-events: none;
  background: inherit;
  filter: blur(22px) saturate(.8) brightness(.74);
  transform: scale(1.04);
}

.market-page .flow-nav {
  background: rgba(12, 14, 15, .74);
  border-bottom-color: rgba(255, 255, 255, .07);
  backdrop-filter: blur(22px);
}

.item-template-page .flow-nav {
  background: #060909;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.market-sidebar {
  position: fixed;
  inset: 56px auto 0 0;
  z-index: 12;
  width: 172px;
  padding: 22px 14px;
  border-right: 1px solid rgba(255, 255, 255, .07);
  background: rgba(12, 14, 15, .62);
  backdrop-filter: blur(24px);
}

.market-sidebar small {
  display: block;
  margin: 0 0 13px;
  color: rgba(245, 243, 237, .44);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.market-sidebar nav {
  display: grid;
  gap: 5px;
}

.market-sidebar a {
  min-height: 36px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 0 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(245, 243, 237, .74);
  font-size: 12px;
  font-weight: 520;
  text-decoration: none;
}

.market-sidebar a:hover,
.market-sidebar a.active {
  color: #fff;
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .055);
}

.cat-svg {
  width: 20px;
  height: 20px;
  display: block;
  color: rgba(245, 243, 237, .86);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cat-svg rect,
.cat-svg circle {
  fill: none;
  stroke: currentColor;
}

.market-content {
  min-height: 100vh;
  margin-left: 172px;
  padding: 106px clamp(36px, 7vw, 128px) 76px;
}

.shop-grid-header,
.market-row {
  width: min(1240px, 100%);
  margin-inline: auto;
}

.shop-grid-header {
  display: grid;
  justify-items: center;
  place-content: center;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 54px;
  text-align: center;
}

.shop-grid-header p {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--shop-yellow);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: .18em;
  text-indent: .18em;
  text-transform: uppercase;
}

.shop-grid-header h1 {
  margin: 0;
  font-family: var(--shop-display);
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 690;
  letter-spacing: -.08em;
  line-height: .82;
  text-indent: -.08em;
}

.shop-grid-header span {
  max-width: 540px;
  margin-inline: auto;
  color: rgba(245, 243, 237, .62);
  font-size: 14px;
  line-height: 1.5;
}

.market-row {
  position: relative;
  margin-bottom: 52px;
  scroll-margin-top: 86px;
}

.row-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  margin-bottom: 2px;
  text-align: center;
}

.row-heading > div {
  justify-self: center;
}

.row-heading .see-all-link {
  position: absolute;
  right: 0;
  bottom: 0;
}

.row-heading h2 {
  margin: 0;
  font-family: var(--shop-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 650;
  letter-spacing: -.07em;
  line-height: .92;
}

.row-heading p {
  max-width: 520px;
  margin: 8px auto 0;
  color: rgba(245, 243, 237, .68);
  font-size: 13px;
  font-weight: 430;
  line-height: 1.45;
}

.see-all-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .045);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .12em;
}

.see-all-link svg,
.carousel-arrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.see-all-link:hover {
  border-color: rgba(243, 199, 79, .46);
  color: #fff;
  background: rgba(243, 199, 79, .1);
}

.product-carousel {
  height: 334px;
  position: relative;
  overflow: visible;
  perspective: 1400px;
}

.product-carousel-track {
  position: relative;
  height: 100%;
}

.market-card {
  width: min(390px, 31vw);
  height: 220px;
  position: absolute;
  left: 50%;
  top: 58px;
  overflow: hidden;
  display: grid;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  color: inherit;
  background: rgba(17, 19, 20, .82);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .32);
  isolation: isolate;
  transition: transform .42s cubic-bezier(.2, .8, .2, 1), opacity .25s ease, filter .25s ease, border-color .25s ease;
  will-change: transform;
}

.market-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 76px;
  background: linear-gradient(180deg, rgba(8, 9, 10, 0), rgba(8, 9, 10, .96));
}

.market-card:hover {
  border-color: rgba(255, 255, 255, .22);
}

.market-card[data-carousel-position="0"] {
  z-index: 5;
  opacity: 1;
  filter: none;
  transform: translateX(-50%) translateZ(90px) scale(1.14);
}

.market-card[data-carousel-position="-1"] {
  z-index: 4;
  opacity: .86;
  filter: brightness(.78) saturate(.84);
  transform: translateX(calc(-50% - 298px)) rotateY(16deg) scale(.88);
}

.market-card[data-carousel-position="1"] {
  z-index: 4;
  opacity: .86;
  filter: brightness(.78) saturate(.84);
  transform: translateX(calc(-50% + 298px)) rotateY(-16deg) scale(.88);
}

.market-card[data-carousel-position="-2"] {
  z-index: 3;
  opacity: .52;
  filter: brightness(.58) saturate(.72);
  transform: translateX(calc(-50% - 552px)) rotateY(24deg) scale(.68);
}

.market-card[data-carousel-position="2"] {
  z-index: 3;
  opacity: .52;
  filter: brightness(.58) saturate(.72);
  transform: translateX(calc(-50% + 552px)) rotateY(-24deg) scale(.68);
}

.market-card.is-carousel-hidden {
  opacity: 0;
  pointer-events: none;
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: rgba(255, 255, 255, .88);
  background: rgba(13, 15, 16, .7);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow:hover {
  color: #fff;
  border-color: rgba(124, 207, 255, .42);
  background: rgba(124, 207, 255, .12);
}

.carousel-arrow.is-left {
  left: clamp(-18px, -2vw, -8px);
}

.carousel-arrow.is-right {
  right: clamp(-18px, -2vw, -8px);
}

.card-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #111;
}

.image-ekflow {
  background-image:
    linear-gradient(90deg, rgba(5, 8, 10, .2), rgba(5, 8, 10, .02)),
    url("../assets/ekflow1.jpg");
  background-position: center 42%;
  background-size: cover;
}

.card-info {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 0 72px 14px 14px;
}

.shop-item-author {
  display: block;
  color: rgba(245, 243, 237, .46);
  font-size: 9px;
  font-weight: 520;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.shop-item-author.is-carousel {
  margin-top: 2px;
}

.card-info strong {
  color: #fff;
  font-family: var(--shop-display);
  font-size: 17px;
  font-weight: 690;
  letter-spacing: -.04em;
}

.card-info small {
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 620;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.market-card b {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  color: #fff;
  font-family: var(--shop-display);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.market-card .approx-price {
  position: absolute;
  right: 15px;
  bottom: 34px;
  z-index: 2;
  opacity: 0;
  color: rgba(245, 243, 237, .62);
  font-size: 11px;
  font-weight: 520;
  line-height: 1;
  pointer-events: none;
  transform: translateY(3px);
  transition: opacity .24s ease, transform .24s ease;
}

.market-card:hover .approx-price {
  opacity: 1;
  transform: translateY(0);
}

.blank-card {
  align-content: center;
  justify-items: center;
  border-style: dashed;
  background:
    radial-gradient(circle at 50% 28%, rgba(124, 207, 255, .09), transparent 26%),
    rgba(255, 255, 255, .02);
  box-shadow: none;
}

.blank-card::after {
  display: none;
}

.blank-card span {
  color: rgba(245, 243, 237, .42);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.category-browser {
  min-height: 100vh;
  padding-top: 82px;
}

.category-browser-head {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: min(1040px, 100%);
  margin: 0 auto 22px;
  text-align: center;
}

.category-back-link {
  margin-bottom: 4px;
  color: rgba(245, 243, 237, .5);
  font-size: 12px;
  font-weight: 560;
}

.category-back-link:hover {
  color: #fff;
}

.category-browser-head p {
  margin: 0;
  color: var(--shop-blue);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.category-browser-head h1 {
  margin: 0;
  font-family: var(--shop-display);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 680;
  letter-spacing: -.08em;
  line-height: .86;
}

.category-browser-head span {
  max-width: 560px;
  color: rgba(245, 243, 237, .64);
  font-size: 14px;
  line-height: 1.5;
}

.category-browser-toolbar {
  width: min(1040px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 14px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(18px);
}

.category-browser-toolbar div {
  display: grid;
  gap: 2px;
}

.category-browser-toolbar strong {
  color: #fff;
  font-size: 13px;
  font-weight: 650;
}

.category-browser-toolbar span {
  color: rgba(245, 243, 237, .5);
  font-size: 12px;
}

.category-browser-toolbar label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.category-browser-toolbar select {
  height: 34px;
  padding: 0 34px 0 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(245, 243, 237, .86);
  background: rgba(0, 0, 0, .22);
  font: inherit;
  font-size: 12px;
}

.category-card-grid {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.category-browser-card {
  min-width: 0;
  min-height: 258px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 150px 1fr;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  color: inherit;
  background: rgba(13, 15, 16, .74);
  box-shadow: 0 18px 58px rgba(0, 0, 0, .24);
}

.category-browser-card:hover {
  border-color: rgba(124, 207, 255, .3);
  transform: translateY(-2px);
}

.category-card-art {
  display: grid;
  place-items: center;
  color: rgba(245, 243, 237, .42);
  background-size: cover;
  background-position: center;
}

.category-card-art.image-ekflow {
  background-image:
    linear-gradient(180deg, rgba(5, 7, 8, 0), rgba(5, 7, 8, .32)),
    url("../assets/ekflow1.jpg");
}

.empty-art {
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background:
    radial-gradient(circle at 50% 24%, rgba(124, 207, 255, .12), transparent 30%),
    rgba(255, 255, 255, .025);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.category-card-body {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 12px;
}

.category-card-body small {
  color: var(--shop-yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.category-card-body strong {
  min-width: 0;
  color: #fff;
  font-family: var(--shop-display);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: 1;
  overflow-wrap: anywhere;
}

.category-card-body p {
  min-width: 0;
  min-height: 34px;
  margin: 0;
  color: rgba(245, 243, 237, .58);
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.category-price-row {
  width: fit-content;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.category-card-body b {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  color: rgba(245, 243, 237, .86);
  background: rgba(255, 255, 255, .045);
  font-size: 12px;
  font-style: normal;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.category-price-row em {
  opacity: 0;
  color: rgba(245, 243, 237, .54);
  font-size: 11px;
  font-style: normal;
  font-weight: 520;
  transform: translateX(-3px);
  transition: opacity .24s ease, transform .24s ease;
  white-space: nowrap;
}

.category-browser-card:hover .category-price-row em {
  opacity: 1;
  transform: translateX(0);
}

.item-template {
  width: 100%;
  min-height: calc(100vh - 44px);
  margin: 0;
  padding: 44px 0 56px;
}

.item-template-page {
  background:
    linear-gradient(rgba(8, 10, 11, .88), rgba(8, 10, 11, .92)),
    url("../assets/home2-cosmic-hero.jpg") center top / cover fixed,
    #090b0c;
}

.item-template-page::before {
  opacity: .34;
  filter: blur(34px) saturate(.62) brightness(.5);
}

.item-hero-template {
  min-height: calc(100vh - 44px);
  display: grid;
  grid-template-columns: minmax(390px, .86fr) minmax(620px, 1.14fr);
  border: 0;
  background: #060909;
  backdrop-filter: none;
}

.item-info-panel,
.item-gallery-panel {
  min-width: 0;
  position: relative;
}

.item-info-panel {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto auto auto auto auto auto;
  padding: clamp(46px, 6vw, 92px);
  border-right: 1px solid rgba(255, 255, 255, .16);
  background: #060909;
}

.item-type {
  margin: 0 0 6px;
  color: rgba(245, 243, 237, .68);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.item-author {
  margin: 0 0 8px;
  color: rgba(245, 243, 237, .44);
  font-size: 9px;
  font-weight: 520;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.item-info-panel h1 {
  margin: 0;
  color: #fff;
  font-family: var(--shop-display);
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 680;
  letter-spacing: -.08em;
  line-height: .86;
}

.wishlist-button {
  width: fit-content;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: rgba(245, 243, 237, .7);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 560;
}

.wishlist-button:hover {
  color: #fff;
}

.wishlist-button svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.item-tabs {
  display: inline-flex;
  gap: 18px;
  margin-top: 20px;
}

.item-tab-button {
  position: relative;
  min-height: 18px;
  padding: 0 0 4px;
  border: 0;
  border-radius: 0;
  color: rgba(245, 243, 237, .48);
  background: transparent;
  font-size: 10px;
  font-weight: 560;
  letter-spacing: .075em;
  text-transform: uppercase;
  cursor: pointer;
}

.item-tab-button.is-active {
  color: rgba(245, 243, 237, .9);
}

.item-tab-button::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 1px;
  height: 1px;
  background: rgba(255, 255, 255, .9);
  opacity: 0;
}

.item-tab-button.is-active::after {
  opacity: 1;
}

.item-tab-panels {
  margin-top: 12px;
  min-height: max(var(--item-tab-panel-height, 0px), 330px);
  overflow: visible;
  transition: min-height .28s cubic-bezier(.2, .8, .2, 1);
}

.item-tab-panels::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.item-tab-panel {
  display: grid;
  gap: 12px;
}

.item-tab-panel[hidden] {
  display: none;
}

.item-description {
  max-width: 520px;
  margin: 0;
  color: rgba(245, 243, 237, .66);
  font-size: 15px;
  line-height: 1.55;
}

.item-description p {
  margin: 0 0 12px;
}

.ekflow-story {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(124, 207, 255, .1);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .9), rgba(6, 9, 10, .58) 58%),
    radial-gradient(circle at 18% 16%, rgba(124, 207, 255, .14), transparent 34%),
    rgba(10, 15, 17, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.ekflow-story::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -78px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(124, 207, 255, .16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 207, 255, .12), transparent 64%);
  pointer-events: none;
}

.ekflow-story-orbit {
  position: absolute;
  right: 22px;
  top: 18px;
  width: 96px;
  height: 96px;
  opacity: .62;
  pointer-events: none;
}

.ekflow-story-orbit span {
  position: absolute;
  inset: calc(var(--i, 0) * 9px);
  border: 1px solid rgba(124, 207, 255, .16);
  border-radius: 50%;
}

.ekflow-story-orbit span:nth-child(1) {
  --i: 0;
}

.ekflow-story-orbit span:nth-child(2) {
  --i: 1;
  border-color: rgba(243, 199, 79, .12);
}

.ekflow-story-orbit span:nth-child(3) {
  --i: 2;
}

.ekflow-story-kicker {
  width: fit-content;
  margin-bottom: 9px;
  padding: 4px 7px;
  border: 1px solid rgba(124, 207, 255, .14);
  color: rgba(124, 207, 255, .84);
  background: rgba(124, 207, 255, .055);
  font-size: 9px;
  font-weight: 560;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ekflow-story h2 {
  max-width: 340px;
  margin: 0;
  color: rgba(248, 250, 252, .96);
  font-family: var(--shop-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 560;
  letter-spacing: -.06em;
  line-height: .95;
}

.ekflow-story-lede {
  max-width: 430px;
  margin: 13px 0 0;
  color: rgba(203, 213, 225, .68);
  font-size: 13px;
  font-weight: 380;
  line-height: 1.55;
}

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

.ekflow-story-grid article {
  min-height: 94px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, .1);
  border-radius: 8px;
  background: rgba(15, 23, 42, .34);
}

.ekflow-story-grid span {
  color: rgba(124, 207, 255, .62);
  font-size: 9px;
  letter-spacing: .12em;
}

.ekflow-story-grid strong {
  display: block;
  margin-top: 5px;
  color: rgba(248, 250, 252, .88);
  font-size: 12px;
  font-weight: 560;
}

.ekflow-story-grid p {
  margin: 5px 0 0;
  color: rgba(203, 213, 225, .58);
  font-size: 11px;
  line-height: 1.45;
}

.item-feature-groups {
  display: grid;
  gap: 0;
}

.feature-claude-board {
  position: relative;
  overflow: visible;
  padding: 14px;
  border: 1px solid rgba(243, 232, 216, .08);
  border-radius: 16px;
  background:
    radial-gradient(circle at 14% 10%, rgba(243, 199, 79, .08), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(124, 207, 255, .07), transparent 28%),
    linear-gradient(180deg, rgba(18, 20, 21, .96), rgba(9, 11, 12, .96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .04),
    0 18px 42px rgba(0, 0, 0, .18);
}

.feature-claude-hero {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin-bottom: 10px;
}

.feature-claude-hero > span {
  color: rgba(243, 232, 216, .52);
  font-size: 10px;
  font-weight: 560;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.feature-claude-hero strong {
  display: block;
  margin-top: 5px;
  color: rgba(248, 245, 240, .96);
  font-family: var(--shop-display);
  font-size: clamp(21px, 2.1vw, 28px);
  font-weight: 520;
  letter-spacing: -.05em;
  line-height: .98;
}

.feature-claude-hero p {
  max-width: 360px;
  margin: 7px 0 0;
  color: rgba(222, 214, 202, .62);
  font-size: 11px;
  font-weight: 380;
  line-height: 1.45;
}

.feature-claude-compare {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin-bottom: 10px;
}

.feature-claude-compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1.2fr);
  gap: 8px;
  align-items: center;
}

.feature-claude-compare-row span {
  min-height: 30px;
  display: grid;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(243, 232, 216, .08);
  background: rgba(243, 232, 216, .03);
  font-size: 11px;
  font-weight: 430;
}

.feature-claude-compare-row .is-free {
  color: rgba(222, 214, 202, .72);
}

.feature-claude-compare-row .is-pro {
  color: rgba(248, 245, 240, .94);
  border-color: rgba(243, 199, 79, .13);
  background: linear-gradient(180deg, rgba(243, 199, 79, .06), rgba(243, 232, 216, .03));
}

.feature-claude-compare-row i {
  position: relative;
  width: 30px;
  height: 1px;
  background: rgba(243, 232, 216, .18);
}

.feature-claude-compare-row i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid rgba(243, 232, 216, .34);
  border-right: 1.5px solid rgba(243, 232, 216, .34);
  transform: translateY(-50%) rotate(45deg);
}

.feature-claude-panels {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.feature-claude-panel {
  padding: 11px;
  border: 1px solid rgba(243, 232, 216, .08);
  border-radius: 12px;
  background: rgba(243, 232, 216, .03);
}

.feature-claude-panel.is-pro {
  border-color: rgba(243, 199, 79, .12);
  background: linear-gradient(180deg, rgba(243, 199, 79, .05), rgba(243, 232, 216, .03));
}

.feature-claude-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
}

.feature-claude-panel-head span {
  color: rgba(222, 214, 202, .5);
  font-size: 9px;
  font-weight: 560;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.feature-claude-panel-head strong {
  color: rgba(248, 245, 240, .9);
  font-size: 12px;
  font-weight: 560;
}

.feature-claude-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feature-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 1;
}

.feature-chip b {
  padding: 5px 8px;
  border: 1px solid rgba(243, 232, 216, .08);
  border-radius: 999px;
  color: rgba(226, 220, 209, .84);
  background: rgba(18, 20, 21, .48);
  font-size: 10px;
  font-weight: 430;
  cursor: help;
}

.feature-chip i {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 7px);
  z-index: 4;
  width: max-content;
  max-width: 210px;
  padding: 8px 9px;
  border: 1px solid rgba(243, 232, 216, .08);
  border-radius: 9px;
  color: rgba(226, 220, 209, .82);
  background: linear-gradient(180deg, rgba(10, 12, 13, .98), rgba(18, 20, 21, .98));
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity .16s ease, transform .16s ease;
}

.feature-chip i::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(243, 232, 216, .08);
  border-bottom: 1px solid rgba(243, 232, 216, .08);
  background: #101213;
  transform: translateX(-50%) rotate(45deg);
}

.feature-chip:hover i,
.feature-chip:focus-within i {
  opacity: 1;
  transform: translate(-50%, 0);
  z-index: 12;
}

.feature-claude-note {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.feature-claude-note > span {
  display: block;
  margin-bottom: 7px;
  color: rgba(222, 214, 202, .48);
  font-size: 9px;
  font-weight: 560;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.feature-claude-note div {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.feature-claude-note b {
  padding: 5px 8px;
  border: 1px solid rgba(243, 232, 216, .08);
  border-radius: 999px;
  color: rgba(226, 220, 209, .84);
  background: rgba(18, 20, 21, .48);
  font-size: 10px;
  font-weight: 430;
}

.feature-board {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(124, 207, 255, .1);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, .86), rgba(6, 9, 10, .62) 58%),
    radial-gradient(circle at 82% 14%, rgba(243, 199, 79, .1), transparent 30%),
    radial-gradient(circle at 18% 90%, rgba(124, 207, 255, .12), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.feature-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .045) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.58), transparent 82%);
  pointer-events: none;
}

.feature-board-head {
  position: relative;
  max-width: 390px;
  z-index: 1;
}

.feature-board-head > span {
  color: rgba(124, 207, 255, .78);
  font-size: 10px;
  font-weight: 560;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.feature-board-head strong {
  display: block;
  margin-top: 6px;
  color: rgba(248, 250, 252, .94);
  font-family: var(--shop-display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 540;
  letter-spacing: -.055em;
  line-height: .98;
}

.feature-board-head p {
  margin: 9px 0 0;
  color: rgba(203, 213, 225, .62);
  font-size: 12px;
  font-weight: 380;
  line-height: 1.45;
}

.feature-board-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 10px;
  margin-top: 16px;
}

.feature-lane {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, .11);
  border-radius: 10px;
  background: rgba(6, 9, 10, .58);
}

.feature-lane.is-pro {
  border-color: rgba(243, 199, 79, .16);
  background:
    linear-gradient(180deg, rgba(243, 199, 79, .045), transparent 42%),
    rgba(6, 9, 10, .58);
}

.feature-lane-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 11px;
}

.feature-lane-top span {
  color: rgba(148, 163, 184, .42);
  font-size: 10px;
  letter-spacing: .12em;
}

.feature-lane h3 {
  margin: 0;
  color: rgba(226, 232, 240, .88);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.feature-lane.is-pro h3 {
  color: rgba(243, 199, 79, .84);
}

.feature-list {
  display: grid;
  gap: 6px;
}

.feature-row {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  color: rgba(226, 232, 240, .74);
  font-size: 12px;
  font-weight: 420;
  line-height: 1.45;
  min-height: 26px;
  padding: 3px 6px 3px 3px;
  border: 1px solid rgba(148, 163, 184, .07);
  border-radius: 7px;
  background: rgba(15, 23, 42, .22);
  transform: translateX(calc(var(--feature-index, 0) * 2px));
}

.feature-row > span {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.feature-row svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-row.is-warning {
  color: rgba(226, 232, 240, .72);
}

.feature-row.is-x {
  color: rgba(226, 232, 240, .64);
}

.feature-row.is-check {
  color: rgba(226, 232, 240, .78);
}

.feature-row.is-check > span {
  color: #fff;
  background: #168a50;
  box-shadow: 0 0 0 1px rgba(48, 211, 124, .18), 0 0 14px rgba(48, 211, 124, .08);
}

.feature-row.is-warning > span {
  color: #171107;
  background: #d7a936;
}

.feature-row.is-x > span {
  color: #fff;
  background: #b94d4d;
}

.item-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.item-tag-row span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  color: rgba(245, 243, 237, .7);
  background: rgba(255, 255, 255, .045);
  font-size: 11px;
}

.item-version-stack {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.item-version-row {
  display: grid;
  grid-template-columns: 54px 82px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 34px;
}

.item-version-row > span:first-child {
  color: rgba(245, 243, 237, .78);
  font-size: 13px;
  font-weight: 620;
}

.item-version-row button {
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .34);
  color: #fff;
  background: rgba(255, 255, 255, .035);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 620;
}

.item-version-row button:hover {
  border-color: rgba(243, 199, 79, .55);
  background: rgba(243, 199, 79, .12);
}

.item-version-row [data-price-scope] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 243, 237, .55);
  font-size: 11px;
}

.item-version-row b {
  color: rgba(245, 243, 237, .84);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.item-version-row em {
  color: rgba(245, 243, 237, .5);
  font-style: normal;
}

.item-version-row .item-owned-note {
  grid-column: 2 / -1;
  margin-top: -2px;
  color: rgba(186, 255, 102, .74);
  font-size: 10px;
  letter-spacing: .04em;
}

.item-gallery-panel {
  overflow: hidden;
  display: grid;
  place-items: center;
  align-self: start;
  height: calc(100vh - 44px);
  background: #060909;
}

.item-gallery-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  color: rgba(245, 243, 237, .5);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(124, 207, 255, .13), transparent 36%),
    radial-gradient(ellipse at 68% 42%, rgba(186, 255, 102, .08), transparent 30%),
    radial-gradient(ellipse at 46% 58%, rgba(255, 255, 255, .05), transparent 44%),
    #060909;
}

.item-gallery-image {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(86%, 940px);
  height: min(72%, 560px);
  min-height: 360px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  filter: drop-shadow(0 28px 62px rgba(0, 0, 0, .36));
  opacity: 1;
  transition: opacity 1.8s cubic-bezier(.45, 0, .2, 1);
  will-change: opacity;
}

.item-gallery-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

.item-gallery-image.is-next {
  opacity: 0;
}

.item-gallery-image.is-exiting {
  opacity: 0;
}

.item-gallery-image.is-next.is-visible {
  opacity: 1;
}

.item-gallery-arrow {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: #fff;
  background: rgba(8, 10, 11, .58);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
}

.item-gallery-arrow[hidden] {
  display: none;
}

.item-gallery-arrow.is-prev {
  left: 24px;
}

.item-gallery-arrow.is-next {
  right: 24px;
}

.item-gallery-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.item-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.item-gallery-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
}

.item-gallery-dot.is-active {
  background: #fff;
}

.item-related-section {
  margin-top: 16px;
}

.item-related-section h2 {
  margin: 0 0 16px;
  color: rgba(245, 243, 237, .72);
  font-family: var(--shop-display);
  font-size: 20px;
  font-weight: 560;
  letter-spacing: -.04em;
  text-align: center;
}

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

.item-related-grid .category-browser-card {
  min-height: 230px;
  grid-template-rows: 126px 1fr;
}

.item-compatibility {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid rgba(148, 163, 184, .14);
}

.item-compatibility > small {
  color: rgba(148, 163, 184, .62);
  font-size: 10px;
  font-weight: 560;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.item-compat-grid {
  display: grid;
  gap: 4px;
}

.compat-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(190px, 1fr);
  gap: 14px;
  align-items: center;
}

.compat-entry {
  position: relative;
  min-height: 30px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 9px;
  padding: 2px 5px 2px 2px;
  border-radius: 8px;
  color: rgba(226, 232, 240, .76);
  font-size: 12px;
  font-weight: 430;
  line-height: 1.45;
  transition: background .18s ease, color .18s ease;
}

.compat-entry:hover {
  color: rgba(248, 250, 252, .92);
  background: rgba(148, 163, 184, .055);
}

.compat-entry img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  padding: 4px;
  border: 1px solid rgba(148, 163, 184, .14);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(148, 163, 184, .12), rgba(15, 23, 42, .18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.compat-status {
  width: 30px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, .12);
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, .6);
  font-size: 10px;
  font-weight: 680;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .07);
}

.compat-status svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compat-entry.is-compatible .compat-status {
  color: #77e2a6;
  border-color: rgba(119, 226, 166, .18);
  background: linear-gradient(180deg, rgba(24, 160, 88, .22), rgba(24, 160, 88, .1));
}

.compat-entry.is-unstable .compat-status {
  color: #ffd66b;
  border-color: rgba(255, 214, 107, .18);
  background: linear-gradient(180deg, rgba(215, 169, 54, .22), rgba(215, 169, 54, .1));
}

.compat-entry.is-not-compatible .compat-status {
  color: #ff8f8f;
  border-color: rgba(255, 143, 143, .18);
  background: linear-gradient(180deg, rgba(196, 78, 78, .22), rgba(196, 78, 78, .1));
}

.compat-tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 5;
  width: 190px;
  display: grid;
  gap: 4px;
  padding: 10px 11px;
  border: 1px solid rgba(124, 207, 255, .14);
  border-radius: 9px;
  color: rgba(226, 232, 240, .8);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, .98), rgba(8, 12, 14, .98)),
    #0f172a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .04);
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity .16s ease, transform .16s ease;
}

.compat-tooltip::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: -5px;
  width: 9px;
  height: 9px;
  border-right: 1px solid rgba(124, 207, 255, .14);
  border-bottom: 1px solid rgba(124, 207, 255, .14);
  background: #080c0e;
  transform: rotate(45deg);
}

.compat-tooltip strong {
  color: rgba(248, 250, 252, .92);
  font-size: 11px;
  font-weight: 560;
}

.compat-tooltip small {
  color: rgba(148, 163, 184, .8);
  font-size: 10px;
  line-height: 1.35;
}

.compat-entry:hover .compat-tooltip,
.compat-entry:focus-within .compat-tooltip {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .market-sidebar {
    inset: 56px 0 auto;
    width: auto;
    padding: 9px 10px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .market-sidebar small {
    display: none;
  }

  .market-sidebar nav {
    display: flex;
    gap: 8px;
  }

  .market-sidebar a {
    white-space: nowrap;
  }

  .market-content {
    margin-left: 0;
    padding: 128px 18px 44px;
  }

  .row-heading {
    justify-items: center;
  }

  .row-heading .see-all-link {
    position: static;
    margin-top: 12px;
  }

  .product-carousel {
    height: 290px;
    overflow: hidden;
  }

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

  .item-template {
    width: min(100% - 28px, 780px);
    padding-top: 110px;
  }

  .item-hero-template {
    grid-template-columns: 1fr;
  }

  .item-info-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
  }

  .item-gallery-panel {
    height: auto;
  }

  .item-gallery-stage {
    min-height: 420px;
  }

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

  .feature-claude-compare-row {
    grid-template-columns: 1fr;
  }

  .feature-claude-compare-row i {
    display: none;
  }

  .feature-claude-panels {
    grid-template-columns: 1fr;
  }

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

  .market-card {
    width: min(330px, 60vw);
    height: 188px;
  }

  .market-card[data-carousel-position="-1"] {
    transform: translateX(calc(-50% - 226px)) rotateY(12deg) scale(.82);
  }

  .market-card[data-carousel-position="1"] {
    transform: translateX(calc(-50% + 226px)) rotateY(-12deg) scale(.82);
  }

  .market-card[data-carousel-position="-2"] {
    transform: translateX(calc(-50% - 410px)) rotateY(18deg) scale(.62);
  }

  .market-card[data-carousel-position="2"] {
    transform: translateX(calc(-50% + 410px)) rotateY(-18deg) scale(.62);
  }
}

@media (max-width: 560px) {
  .market-content {
    padding-inline: 12px;
  }

  .shop-grid-header {
    margin-bottom: 38px;
  }

  .market-card {
    width: min(282px, 76vw);
  }

  .market-card[data-carousel-position="-1"] {
    transform: translateX(calc(-50% - 168px)) rotateY(10deg) scale(.78);
  }

  .market-card[data-carousel-position="1"] {
    transform: translateX(calc(-50% + 168px)) rotateY(-10deg) scale(.78);
  }

  .market-card[data-carousel-position="-2"],
  .market-card[data-carousel-position="2"] {
    opacity: 0;
  }

  .category-browser {
    padding-top: 96px;
  }

  .category-browser-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .category-browser-toolbar label {
    justify-content: space-between;
  }

  .category-card-grid {
    grid-template-columns: 1fr;
  }

  .item-version-row {
    grid-template-columns: 48px 74px;
  }

  .item-version-row [data-price-scope] {
    grid-column: 1 / -1;
  }

  .item-related-grid {
    grid-template-columns: 1fr;
  }
}
.item-version-actions {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2px;
}

.item-version-row.is-credit-product {
  grid-template-columns: 54px 82px minmax(0, 1fr);
  align-items: start;
}

.item-version-row .item-version-actions button {
  width: 100%;
  min-width: 0;
}

.item-version-row .item-version-actions .is-gift {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 25px;
  padding: 0 3px;
  border: 0;
  color: #b9dcf5;
  background: transparent;
}

.item-version-row.is-credit-product [data-price-scope] {
  min-height: 30px;
  align-items: center;
}

.item-version-row .item-version-actions .is-gift:hover {
  border-color: transparent;
  color: #fff;
  background: transparent;
}

.item-version-row .item-version-actions .is-gift svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Studio index overview */
.studio-index {
  width: min(1220px, calc(100% - 220px));
  margin-left: 172px;
  padding: 112px 24px 88px;
}
.studio-index-hero,
.studio-feed,
.studio-clusters,
.studio-later { width: min(1120px, 100%); margin-inline: auto; }
.studio-index-hero { padding: 30px 0 74px; }
.studio-index-kicker,
.studio-section-heading p,
.studio-cluster-heading p { margin: 0 0 12px; color: var(--shop-yellow); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.studio-index-hero h1 { max-width: 720px; margin: 0; color: #fff; font-family: var(--shop-display); font-size: clamp(48px, 7vw, 92px); font-weight: 680; letter-spacing: -.07em; line-height: .92; }
.studio-index-lede { max-width: 540px; margin: 22px 0 0; color: rgba(245,243,237,.65); font-size: 16px; line-height: 1.55; }
.studio-feed { margin-bottom: 76px; }
.studio-section-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
.studio-section-heading h2,
.studio-cluster-heading h2 { margin: 0 0 14px; color: #fff; font-family: var(--shop-display); font-size: clamp(34px, 5vw, 60px); font-weight: 650; letter-spacing: -.06em; line-height: .95; }
.studio-feed-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.studio-feed-grid .category-browser-card { min-height: 238px; grid-template-rows: 132px 1fr; border-radius: 4px; }
.studio-index .studio-card { position: relative; left: auto; top: auto; width: auto; height: auto; display: grid; align-content: stretch; border-radius: 4px; box-shadow: 0 18px 58px rgba(0,0,0,.24); isolation: auto; transition: transform .2s ease, border-color .2s ease; will-change: auto; }
.studio-index .studio-card::after { display: none; }
.studio-clusters { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-bottom: 84px; }
.studio-cluster { min-width: 0; padding: 22px; border: 1px solid rgba(255,255,255,.11); border-radius: 4px; background: rgba(13,15,16,.52); }
.studio-cluster-heading { margin-bottom: 22px; }
.studio-cluster-heading span { display: block; max-width: 330px; color: rgba(245,243,237,.56); font-size: 12px; line-height: 1.45; }
.studio-cluster-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: minmax(78px, auto); gap: 9px; }
.studio-cluster-grid .category-browser-card { min-height: 132px; grid-template-rows: 1fr; border-radius: 3px; box-shadow: none; }
.studio-cluster-grid [data-cluster-slot] { grid-column: var(--card-column); grid-row: var(--card-row); }
.studio-cluster-grid .category-card-art { display: none; }
.studio-cluster-grid .category-card-body { padding: 11px; }
.studio-cluster-grid .category-card-body strong { font-size: 15px; }
.studio-cluster-grid .category-card-body p { display: none; }
.studio-cluster-grid .category-card-body b { padding: 4px 6px; font-size: 9px; }
.studio-cluster-grid [data-card-depth="1"] { transform: translateY(-4px); }
.studio-cluster-grid [data-card-depth="2"] { transform: translateY(5px); }
.studio-cluster-grid [data-card-depth="3"] { transform: translateY(-7px); }
.studio-card-placeholder { min-height: 132px; display: grid; align-content: center; gap: 8px; padding: 13px; border: 1px dashed rgba(255,255,255,.15); border-radius: 3px; background: rgba(255,255,255,.025); }
.studio-placeholder-label { color: rgba(245,243,237,.42); font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.studio-card-placeholder strong { color: rgba(245,243,237,.62); font-size: 12px; line-height: 1.2; }
.studio-later { padding-top: 4px; }
.studio-later-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.studio-later-grid article { min-height: 146px; display: grid; align-content: start; gap: 8px; padding: 16px; border-top: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.025); }
.studio-later-grid article span { color: rgba(245,243,237,.42); font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.studio-later-grid article strong { color: #fff; font-family: var(--shop-display); font-size: 18px; letter-spacing: -.04em; }
.studio-later-grid article p { margin: 0; color: rgba(245,243,237,.5); font-size: 11px; line-height: 1.4; }
.studio-index-error { display: flex; align-items: center; gap: 14px; padding: 24px 0; color: rgba(245,243,237,.72); }
.studio-index-error a { color: var(--shop-blue); }
@media (max-width: 980px) and (min-width: 721px) {
  .studio-index { width: auto; margin-left: 0; padding: 128px 18px 70px; }
  .studio-feed-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .studio-clusters { grid-template-columns: 1fr; }
  .studio-later-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .studio-index { width: auto; margin-left: 0; padding: 104px 16px 56px; overflow: hidden; }
  .studio-index-hero { padding: 28px 0 54px; }
  .studio-index-hero h1 { font-size: clamp(42px, 13vw, 66px); }
  .studio-index-lede { font-size: 14px; }
  .studio-feed { margin-bottom: 52px; }
  .studio-section-heading { display: block; margin-bottom: 16px; }
  .studio-section-heading h2 { font-size: 42px; }
  .studio-feed-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .studio-feed-grid .category-browser-card { min-height: 214px; grid-template-rows: 104px 1fr; }
  .studio-clusters { grid-template-columns: 1fr; gap: 14px; margin-bottom: 56px; }
  .studio-cluster { padding: 16px; }
  .studio-cluster-heading h2 { font-size: 42px; }
  .studio-cluster-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
  .studio-cluster-grid [data-cluster-slot] { grid-column: auto; grid-row: auto; }
  .studio-cluster-grid [data-card-depth] { transform: none; }
  .studio-later-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .studio-later-grid article { min-height: 132px; padding: 13px; }
  .category-price-row { width: 100%; max-width: 100%; flex-wrap: wrap; gap: 5px; }
  .category-price-row em { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html:has(.studio-index) { scroll-behavior: auto !important; }
  .studio-index [data-card-depth], .studio-index .category-browser-card:hover { transform: none; transition: none; }
}

@media (max-width: 620px) {
  .item-version-row.is-credit-product {
    grid-template-columns: 48px 74px minmax(0, 1fr);
  }

  .item-version-row.is-credit-product .item-owned-note {
    grid-column: 1 / -1;
  }
}
