.mod-showcase {
  --showcase-accent: #087ca7;
  --showcase-accent-rgb: 8, 124, 167;
  --showcase-tint: rgba(239, 250, 255, 0.9);
  --showcase-spring: cubic-bezier(.16, 1, .3, 1);
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: clip;
  border-block: 1px solid rgba(8, 124, 167, 0.13);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.92), rgba(248, 253, 255, 0.76) 50%, rgba(var(--showcase-accent-rgb), 0.07)),
    #f6fcff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(var(--showcase-accent-rgb), 0.06),
    0 16px 42px rgba(8, 124, 167, 0.07);
}

.mod-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.98), transparent 28%),
    linear-gradient(90deg, rgba(var(--showcase-accent-rgb), 0.055), transparent 34%, transparent 66%, rgba(var(--showcase-accent-rgb), 0.045));
}

.mod-showcase::after {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  z-index: 2;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, #fff 24%, rgba(var(--showcase-accent-rgb), 0.5) 50%, #fff 76%, transparent);
}

.mod-showcase__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(520px, 1.45fr);
  align-items: center;
  gap: 22px 32px;
  width: min(100%, 1180px);
  min-height: 148px;
  margin-inline: auto;
  padding: 22px;
}

.mod-showcase.has-enter-motion .mod-showcase__copy,
.mod-showcase.has-enter-motion .mod-showcase__actions {
  opacity: 0;
  transform: translateY(12px);
}

.mod-showcase.has-enter-motion.is-visible .mod-showcase__copy,
.mod-showcase.has-enter-motion.is-visible .mod-showcase__actions {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 620ms var(--showcase-spring);
}

.mod-showcase.has-enter-motion.is-visible .mod-showcase__actions {
  transition-delay: 70ms;
}

.mod-showcase__copy {
  min-width: 0;
}

.mod-showcase__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--showcase-accent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mod-showcase__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(var(--showcase-accent-rgb), 0.1);
}

.mod-showcase__copy h2 {
  margin: 0;
  color: #0a1b22;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.mod-showcase__copy p {
  margin: 6px 0 0;
  max-width: 560px;
  color: #52656e;
  font-size: 12.5px;
  line-height: 1.5;
}

.mod-showcase__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: 680px;
}

.mod-showcase__action {
  appearance: none;
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 94px 34px;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 88px;
  padding: 10px 12px 10px 10px;
  overflow: hidden;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.32);
  border-radius: 14px;
  color: #10242c;
  background:
    radial-gradient(circle at 100% 0, rgba(var(--showcase-accent-rgb), 0.14), transparent 42%),
    linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8) 60%, rgba(var(--showcase-accent-rgb), 0.1)),
    var(--showcase-tint);
  box-shadow:
    inset 0 1px 1px #fff,
    inset 0 -1px 0 rgba(var(--showcase-accent-rgb), 0.08),
    0 14px 32px rgba(var(--showcase-accent-rgb), 0.11);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 320ms var(--showcase-spring), border-color 180ms ease, box-shadow 320ms var(--showcase-spring);
}

.mod-showcase__action::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 10%, rgba(255, 255, 255, 0.82) 36%, rgba(255, 255, 255, 0.18) 49%, transparent 64%);
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity 260ms ease, transform 520ms var(--showcase-spring);
}

.mod-showcase__action > * {
  position: relative;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .mod-showcase__action:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--showcase-accent-rgb), 0.54);
    box-shadow: inset 0 1px 1px #fff, 0 18px 40px rgba(var(--showcase-accent-rgb), 0.16);
  }

  .mod-showcase__action:hover::before {
    opacity: 0.92;
    transform: translateX(42%);
  }
}

.mod-showcase__action:active {
  transform: scale(0.987);
  transition-duration: 100ms;
}

.mod-showcase__action:focus-visible,
.mod-showcase__section-tab:focus-visible,
.mod-showcase__feature-tab:focus-visible,
.mod-showcase__feature-media video:focus-visible,
.mod-showcase__catalog summary:focus-visible {
  outline: 3px solid rgba(var(--showcase-accent-rgb), 0.58);
  outline-offset: 3px;
}

.mod-showcase__mark {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.34);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, rgba(var(--showcase-accent-rgb), 0.13));
  box-shadow: inset 0 1px 1px #fff, 0 9px 19px rgba(var(--showcase-accent-rgb), 0.13);
}

.mod-showcase__mark::before {
  content: "";
  position: absolute;
  width: 27px;
  height: 27px;
  border: 2px solid var(--showcase-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(var(--showcase-accent-rgb), 0.08);
}

.mod-showcase__mark i,
.mod-showcase__mark b {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 3px;
  background: var(--showcase-accent);
}

.mod-showcase__mark i {
  width: 3px;
  height: 15px;
}

.mod-showcase__mark b {
  width: 15px;
  height: 3px;
}

.mod-showcase__action-copy {
  min-width: 0;
}

.mod-showcase__action-copy strong,
.mod-showcase__action-copy small {
  display: block;
}

.mod-showcase__action-copy strong {
  color: #0a1b22;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}

.mod-showcase__action-copy small {
  margin-top: 4px;
  color: #5b6c74;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.mod-showcase__preview {
  display: flex;
  width: 94px;
  align-items: center;
  padding-left: 2px;
}

.mod-showcase__thumb {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  aspect-ratio: 1;
  margin-left: -19px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(10, 27, 34, 0.18), 0 0 0 1px rgba(var(--showcase-accent-rgb), 0.14);
  transition: transform 320ms var(--showcase-spring);
}

.mod-showcase__thumb:first-child {
  z-index: 1;
  margin-left: 0;
  transform: rotate(-3deg);
}

.mod-showcase__thumb:nth-child(2) {
  z-index: 2;
  transform: translateY(-2px);
}

.mod-showcase__thumb:nth-child(3) {
  z-index: 3;
  transform: rotate(3deg);
}

.mod-showcase__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mod-showcase__thumb i {
  position: absolute;
  right: 3px;
  bottom: 3px;
  min-width: 17px;
  padding: 2px 4px;
  border-radius: 4px;
  color: #fff;
  background: rgba(6, 20, 26, 0.78);
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.mod-showcase__chevron {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.24);
  border-radius: 50%;
  color: var(--showcase-accent);
  background: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-weight: 900;
  transition: transform 280ms var(--showcase-spring), background-color 180ms ease;
}

.mod-showcase__toggle[aria-expanded="true"] .mod-showcase__chevron {
  transform: rotate(180deg);
  background: #fff;
}

.mod-showcase__toggle[aria-expanded="true"] .mod-showcase__mark {
  border-color: rgba(var(--showcase-accent-rgb), 0.58);
  background: linear-gradient(145deg, #fff, rgba(var(--showcase-accent-rgb), 0.2));
}

.mod-showcase__panel[hidden] {
  display: none;
}

.mod-showcase__panel {
  grid-column: 1 / -1;
  min-width: 0;
}

.mod-showcase__panel-inner {
  position: relative;
  padding: clamp(18px, 2.5vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.25);
  border-radius: 18px;
  background:
    linear-gradient(rgba(var(--showcase-accent-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--showcase-accent-rgb), 0.04) 1px, transparent 1px),
    radial-gradient(circle at 92% 0, rgba(var(--showcase-accent-rgb), 0.14), transparent 30%),
    linear-gradient(145deg, #fff, var(--showcase-tint));
  background-size: 30px 30px, 30px 30px, auto, auto;
  box-shadow: inset 0 1px 1px #fff, 0 18px 42px rgba(var(--showcase-accent-rgb), 0.1);
}

.mod-showcase__panel-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, var(--showcase-accent), #fff, transparent);
}

.mod-showcase__panel-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.mod-showcase__panel-head div > span {
  display: block;
  margin-bottom: 5px;
  color: var(--showcase-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mod-showcase__panel-head h2 {
  margin: 0;
  color: #0a1b22;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.mod-showcase__panel-head p {
  margin: 8px 0 0;
  color: #52656e;
  font-size: 12px;
  line-height: 1.5;
}

.mod-showcase__panel-head > strong {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.24);
  border-radius: 999px;
  color: var(--showcase-accent);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 #fff;
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.mod-showcase__section-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
  padding: 6px;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.16);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 #fff;
}

.mod-showcase__section-tab,
.mod-showcase__feature-tab {
  appearance: none;
  position: relative;
  display: grid;
  min-width: 0;
  align-items: center;
  border: 1px solid transparent;
  color: #53656e;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 220ms var(--showcase-spring), transform 220ms var(--showcase-spring);
}

.mod-showcase__section-tab {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  min-height: 66px;
  padding: 10px 12px;
  border-radius: 11px;
}

.mod-showcase__section-tab::after,
.mod-showcase__feature-tab::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -1px;
  left: 10px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--showcase-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--showcase-spring);
}

.mod-showcase__section-tab > small {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.22);
  border-radius: 10px;
  color: var(--showcase-accent);
  background: rgba(255, 255, 255, 0.88);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.mod-showcase__section-tab span,
.mod-showcase__section-tab strong,
.mod-showcase__section-tab b,
.mod-showcase__feature-tab span,
.mod-showcase__feature-tab strong,
.mod-showcase__feature-tab b {
  display: block;
  min-width: 0;
}

.mod-showcase__section-tab strong {
  color: #10242c;
  font-size: 12px;
  font-weight: 850;
}

.mod-showcase__section-tab b {
  margin-top: 2px;
  color: #71818a;
  font-size: 8.5px;
  font-weight: 700;
}

.mod-showcase__section-tab.is-active,
.mod-showcase__feature-tab.is-active {
  border-color: rgba(var(--showcase-accent-rgb), 0.29);
  color: var(--showcase-accent);
  background: linear-gradient(145deg, #fff, rgba(var(--showcase-accent-rgb), 0.09));
  box-shadow: inset 0 1px 0 #fff, 0 8px 20px rgba(var(--showcase-accent-rgb), 0.1);
}

.mod-showcase__section-tab.is-active::after,
.mod-showcase__feature-tab.is-active::after {
  transform: scaleX(1);
}

@media (hover: hover) and (pointer: fine) {
  .mod-showcase__section-tab:hover,
  .mod-showcase__feature-tab:hover {
    color: var(--showcase-accent);
    transform: translateY(-1px);
  }
}

.mod-showcase__section-panel[hidden],
.mod-showcase__feature-panel[hidden] {
  display: none;
}

.mod-showcase__section-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 #fff, 0 14px 34px rgba(10, 27, 34, 0.06);
}

.mod-showcase__section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px 15px;
  border-bottom: 1px solid rgba(var(--showcase-accent-rgb), 0.13);
  background: linear-gradient(100deg, #fff, rgba(var(--showcase-accent-rgb), 0.055));
}

.mod-showcase__section-head span {
  color: var(--showcase-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mod-showcase__section-head h3 {
  margin: 3px 0 0;
  color: #0a1b22;
  font-size: clamp(22px, 2.6vw, 31px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.mod-showcase__section-head p {
  margin: 6px 0 0;
  color: #60717a;
  font-size: 11px;
  line-height: 1.45;
}

.mod-showcase__section-head > strong {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.2);
  border-radius: 999px;
  color: var(--showcase-accent);
  background: #fff;
  font-size: 8.5px;
  font-weight: 850;
  white-space: nowrap;
}

.mod-showcase__feature-tabs {
  display: grid;
  grid-template-columns: repeat(var(--feature-count), minmax(0, 1fr));
  gap: 7px;
  padding: 10px 10px 0;
  border-bottom: 1px solid rgba(var(--showcase-accent-rgb), 0.12);
  background: rgba(248, 252, 254, 0.82);
}

.mod-showcase__feature-tab {
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 8px;
  min-height: 60px;
  padding: 9px 10px 11px;
  border-radius: 9px 9px 0 0;
}

.mod-showcase__feature-tab > small {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  color: var(--showcase-accent);
  background: rgba(var(--showcase-accent-rgb), 0.08);
  font-size: 7.5px;
  font-weight: 900;
}

.mod-showcase__feature-tab strong {
  overflow-wrap: anywhere;
  color: #1b3039;
  font-size: 10.5px;
  font-weight: 850;
  line-height: 1.15;
}

.mod-showcase__feature-tab b {
  margin-top: 3px;
  overflow-wrap: anywhere;
  color: #71818a;
  font-size: 7.5px;
  font-weight: 700;
  line-height: 1.25;
}

.mod-showcase__feature-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  min-width: 0;
  overflow: hidden;
  background: #fff;
}

.mod-showcase__feature-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3.4vw, 42px);
  background:
    radial-gradient(circle at 100% 0, rgba(var(--showcase-accent-rgb), 0.1), transparent 42%),
    linear-gradient(145deg, #fff, rgba(255, 255, 255, 0.82));
}

.mod-showcase__feature-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}

.mod-showcase__feature-topline span,
.mod-showcase__feature-topline b {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mod-showcase__feature-topline span {
  padding: 6px 8px;
  border-radius: 7px;
  color: #fff;
  background: var(--showcase-accent);
  box-shadow: 0 6px 15px rgba(var(--showcase-accent-rgb), 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.mod-showcase__feature-topline b {
  color: var(--showcase-accent);
}

.mod-showcase__feature-copy h3 {
  margin: 0;
  color: #0a1b22;
  font-size: clamp(29px, 3.5vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.mod-showcase__feature-copy > strong {
  margin-top: 10px;
  color: #263b44;
  font-size: 12px;
  font-weight: 850;
}

.mod-showcase__feature-copy > p {
  margin: 13px 0 0;
  color: #52656e;
  font-size: 13px;
  line-height: 1.65;
}

.mod-showcase__feature-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(var(--showcase-accent-rgb), 0.13);
}

.mod-showcase__feature-note span {
  color: var(--showcase-accent);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.mod-showcase__feature-note small {
  color: #71818a;
  font-size: 9.5px;
  font-weight: 650;
  line-height: 1.5;
}

.mod-showcase__feature-media {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 330px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(var(--showcase-accent-rgb), 0.18), transparent 40%),
    #07151b;
}

.mod-showcase__feature-media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #07151b;
}

.mod-showcase__feature-panel.is-buffering .mod-showcase__feature-media::after {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  background: rgba(3, 15, 20, 0.76);
  content: 'Loading clip…';
  font-size: 9px;
  font-weight: 850;
  pointer-events: none;
}

.mod-showcase__media-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 24px);
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #fff;
  background: rgba(4, 17, 22, 0.72);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.16);
  font-size: 8.5px;
  font-weight: 800;
  line-height: 1.2;
}

.mod-showcase__media-label i {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--showcase-accent);
  box-shadow: 0 0 0 3px rgba(var(--showcase-accent-rgb), 0.18);
}

.mod-showcase__direct-link {
  position: absolute;
  right: 12px;
  bottom: 48px;
  z-index: 4;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 7px;
  color: #fff;
  background: rgba(3, 15, 20, 0.8);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
  font-size: 8px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.mod-showcase__direct-link:hover,
.mod-showcase__direct-link:focus-visible {
  background: rgba(3, 15, 20, 0.96);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.mod-showcase__catalog {
  position: relative;
  margin-top: 16px;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 #fff, 0 10px 26px rgba(10, 27, 34, 0.06);
}

.mod-showcase__catalog summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  list-style: none;
  cursor: pointer;
}

.mod-showcase__catalog summary::-webkit-details-marker {
  display: none;
}

.mod-showcase__catalog summary span,
.mod-showcase__catalog summary small,
.mod-showcase__catalog summary strong {
  display: block;
}

.mod-showcase__catalog summary small {
  margin-bottom: 3px;
  color: var(--showcase-accent);
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mod-showcase__catalog summary strong {
  color: #0a1b22;
  font-size: 13px;
  font-weight: 850;
}

.mod-showcase__catalog summary > i {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.24);
  border-radius: 50%;
  color: var(--showcase-accent);
  background: #fff;
  font-size: 19px;
  font-style: normal;
  font-weight: 800;
  transition: transform 240ms var(--showcase-spring);
}

.mod-showcase__catalog[open] summary > i {
  transform: rotate(45deg);
}

.mod-showcase__catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0 14px 14px;
}

.mod-showcase__catalog-group {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.14);
  border-radius: 11px;
  background: linear-gradient(145deg, #fff, rgba(var(--showcase-accent-rgb), 0.045));
}

.mod-showcase__catalog-group header {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(var(--showcase-accent-rgb), 0.11);
}

.mod-showcase__catalog-group header > span {
  display: grid;
  min-width: 33px;
  height: 25px;
  padding-inline: 5px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--showcase-accent);
  font-size: 7.5px;
  font-weight: 900;
}

.mod-showcase__catalog-group h4 {
  margin: 0;
  color: #10242c;
  font-size: 12px;
}

.mod-showcase__catalog-group header p {
  margin: 3px 0 0;
  color: #71818a;
  font-size: 8.5px;
  line-height: 1.35;
}

.mod-showcase__catalog-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}

.mod-showcase__catalog-group li {
  padding: 5px 7px;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.13);
  border-radius: 6px;
  color: #40545d;
  background: rgba(255, 255, 255, 0.82);
  font-size: 8.5px;
  font-weight: 750;
  line-height: 1.2;
}

.mod-showcase__note {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 16px 0 0;
  padding: 11px 13px;
  border: 1px solid rgba(var(--showcase-accent-rgb), 0.16);
  border-radius: 10px;
  color: #52656e;
  background: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.mod-showcase__note span {
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--showcase-accent);
  font-size: 10px;
  font-weight: 900;
}

@media (max-width: 1000px) {
  .mod-showcase__shell {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 18px;
  }

  .mod-showcase__actions {
    max-width: none;
  }

  .mod-showcase__catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .mod-showcase__feature-panel {
    grid-template-columns: 1fr;
  }

  .mod-showcase__feature-media,
  .mod-showcase__feature-media video {
    min-height: 0;
  }

  .mod-showcase__feature-media video {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 620px) {
  .mod-showcase__shell {
    gap: 13px;
    padding: 16px;
  }

  .mod-showcase__copy p {
    font-size: 12px;
  }

  .mod-showcase__action {
    grid-template-columns: 46px minmax(0, 1fr) 82px 30px;
    gap: 10px;
    min-height: 76px;
    padding: 8px;
    border-radius: 12px;
  }

  .mod-showcase__mark {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .mod-showcase__mark::before {
    width: 23px;
    height: 23px;
  }

  .mod-showcase__preview {
    width: 82px;
  }

  .mod-showcase__thumb {
    flex-basis: 38px;
    width: 38px;
    margin-left: -16px;
    border-radius: 7px;
  }

  .mod-showcase__action-copy strong {
    font-size: 12px;
  }

  .mod-showcase__action-copy small {
    margin-top: 2px;
    font-size: 9px;
  }

  .mod-showcase__panel-inner {
    padding: 14px;
    border-radius: 14px;
  }

  .mod-showcase__panel-head {
    display: block;
    margin-bottom: 14px;
  }

  .mod-showcase__panel-head h2 {
    font-size: clamp(23px, 7.5vw, 30px);
  }

  .mod-showcase__panel-head > strong {
    display: inline-flex;
    margin-top: 10px;
    white-space: normal;
  }

  .mod-showcase__section-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 5px;
  }

  .mod-showcase__section-tab {
    display: block;
    min-height: 58px;
    padding: 8px 6px;
    text-align: center;
  }

  .mod-showcase__section-tab > small {
    width: 26px;
    height: 26px;
    margin: 0 auto 5px;
    border-radius: 8px;
  }

  .mod-showcase__section-tab strong {
    font-size: 10.5px;
  }

  .mod-showcase__section-tab b {
    display: none;
  }

  .mod-showcase__section-head {
    display: block;
    padding: 15px 16px 13px;
  }

  .mod-showcase__section-head > strong {
    display: inline-flex;
    margin-top: 9px;
    white-space: normal;
  }

  .mod-showcase__feature-tabs {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 8px;
  }

  .mod-showcase__feature-tab {
    min-height: 52px;
    padding: 8px 10px;
    border-radius: 9px;
  }

  .mod-showcase__feature-tab::after {
    top: 8px;
    right: auto;
    bottom: 8px;
    left: -1px;
    width: 3px;
    height: auto;
    border-radius: 0 999px 999px 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  .mod-showcase__feature-tab.is-active::after {
    transform: scaleY(1);
  }

  .mod-showcase__feature-copy {
    padding: 21px 18px 23px;
  }

  .mod-showcase__feature-copy h3 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .mod-showcase__feature-copy > p {
    font-size: 12.5px;
  }

  .mod-showcase__catalog-grid {
    grid-template-columns: 1fr;
  }

  .mod-showcase__note {
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .mod-showcase__action {
    grid-template-columns: 46px minmax(0, 1fr) 30px;
  }

  .mod-showcase__action .mod-showcase__preview {
    display: none;
  }

  .mod-showcase__feature-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mod-showcase *,
  .mod-showcase *::before,
  .mod-showcase *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (update: slow) {
  .mod-showcase *,
  .mod-showcase *::before,
  .mod-showcase *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (prefers-reduced-transparency: reduce),
       (max-width: 620px) and (pointer: coarse) {
  .mod-showcase,
  .mod-showcase__action,
  .mod-showcase__panel-inner,
  .mod-showcase__section-tabs,
  .mod-showcase__section-panel,
  .mod-showcase__feature-panel,
  .mod-showcase__catalog {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
}
