.static-showcase {
  margin-top: 50px;
  overflow: hidden;
  border: 1px solid #3c362b;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% -10%, rgba(224, 138, 69, .08), transparent 34%),
    #15130f;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.static-showcase__tabs {
  min-height: 84px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(145px, .58fr);
  border-bottom: 1px solid #3c362b;
  background: #1b1813;
}

.static-showcase__tab {
  position: relative;
  min-width: 0;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-content: center;
  gap: 4px 8px;
  border: 0;
  border-right: 1px solid #342f26;
  color: #827a6b;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color .18s ease, background .18s ease;
}

.static-showcase__tab:hover {
  color: #c5bcac;
  background: #211d17;
}

.static-showcase__tab::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -1px;
  left: 20px;
  height: 2px;
  background: var(--warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.static-showcase__tab.is-active {
  color: #f1eadc;
  background: #211d17;
}

.static-showcase__tab.is-active::after { transform: scaleX(1); }

.static-showcase__tab > span {
  grid-row: 1 / span 2;
  align-self: start;
  padding-top: 2px;
  color: var(--warm);
  font: 500 8px var(--font-mono);
  letter-spacing: .06em;
}

.static-showcase__tab strong {
  overflow: hidden;
  font: 500 10.5px var(--font-sans);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.static-showcase__tab small {
  color: #625b4f;
  font: 400 7px var(--font-mono);
  letter-spacing: .045em;
  text-transform: uppercase;
}

.static-showcase__coverage-total {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.static-showcase__coverage-total span {
  color: #706859;
  font: 400 7px var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.static-showcase__coverage-total strong {
  color: #e7dfd0;
  font: 500 10px var(--font-mono);
  letter-spacing: .04em;
}

.static-showcase__sequence {
  padding: clamp(18px, 2.5vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr) 52px minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.static-frame {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #3c362b;
  border-radius: 9px;
  background: #1d1a15;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .22);
}

.static-frame__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #28251f;
}

.static-frame__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 8, 5, .08), transparent 45%, rgba(10, 8, 5, .34)),
    linear-gradient(90deg, rgba(10, 8, 5, .08), transparent 25%, transparent 75%, rgba(10, 8, 5, .08));
}

.static-frame__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity .18s ease, transform .45s ease;
}

.static-frame--workspace .static-frame__media img {
  object-position: center;
}

.static-frame__badge {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 4px;
  color: #e9e1d1;
  background: rgba(16, 14, 10, .78);
  font: 500 6.5px var(--font-mono);
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.static-frame--workspace .static-frame__badge {
  color: #f5c39a;
  border-color: rgba(224, 138, 69, .3);
}

.static-frame--result .static-frame__badge {
  color: #c8dfc7;
  border-color: rgba(112, 165, 109, .3);
}

.static-frame figcaption {
  min-height: 76px;
  padding: 14px 15px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  border-top: 1px solid #3c362b;
}

.static-frame figcaption > span {
  padding-top: 2px;
  color: var(--warm);
  font: 500 8px var(--font-mono);
}

.static-frame figcaption div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.static-frame figcaption strong {
  color: #eee6d7;
  font: 500 10px var(--font-sans);
}

.static-frame figcaption small {
  color: #7e7668;
  font: 400 7.25px/1.45 var(--font-mono);
}

.static-flow {
  min-width: 0;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.static-flow span {
  color: #7b7264;
  font: 400 6.5px var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.static-flow i {
  position: relative;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #4a4235, #8c6749);
}

.static-flow i::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #a17755;
  border-right: 1px solid #a17755;
  transform: rotate(45deg);
}

.static-showcase__detail {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  border-top: 1px solid #3c362b;
  background: #1b1813;
}

.static-showcase__story {
  padding: clamp(26px, 3.4vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 13px;
  border-right: 1px solid #3c362b;
}

.static-showcase__story > span {
  color: var(--warm);
  font: 500 7.5px var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.static-showcase__story h3 {
  max-width: 570px;
  color: #f1eadc;
  font: 500 clamp(26px, 3vw, 38px)/1.08 var(--font-display);
  letter-spacing: -.02em;
}

.static-showcase__story > p:not(.static-showcase__source) {
  max-width: 62ch;
  color: #9a9182;
  font: 400 11px/1.7 var(--font-sans);
}

.static-showcase__source {
  margin-top: auto;
  padding-top: 11px;
  color: #696256;
  font: 400 7px/1.6 var(--font-mono);
}

.static-showcase__source a {
  color: #a59b8b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.static-showcase__data {
  padding: clamp(26px, 3.4vw, 42px);
  display: grid;
  grid-template-columns: minmax(220px, .85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 3vw, 42px);
}

.static-showcase__data > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.static-showcase__label {
  color: #756d5f;
  font: 400 7.5px var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.static-showcase__schedule {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
}

.static-showcase__schedule li {
  padding: 8px 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 8px;
  border-top: 1px solid #332e25;
  color: #a69d8e;
  font: 400 8px/1.4 var(--font-mono);
}

.static-showcase__schedule li:first-child { border-top: 0; }

.static-showcase__schedule li span:first-child {
  color: var(--warm);
}

.static-showcase__tags {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 6px;
}

.static-showcase__tags span {
  padding: 7px 8px;
  border: 1px solid #3d372c;
  border-radius: 4px;
  color: #918879;
  background: #1e1b16;
  font: 400 7px/1.25 var(--font-mono);
}

.static-showcase__proof {
  padding: 18px clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  border-top: 1px solid #3c362b;
  background: #12100d;
}

.static-showcase__proof span {
  color: #c5bcac;
  font: 500 7px var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.static-showcase__proof p {
  max-width: 920px;
  color: #776f62;
  font: 400 8px/1.6 var(--font-mono);
}

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

  .static-showcase__coverage-total { display: none; }

  .static-showcase__sequence {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .static-flow {
    min-height: 32px;
    padding: 0;
    flex-direction: row;
    justify-content: center;
  }

  .static-flow i {
    width: 1px;
    height: 28px;
    background: linear-gradient(180deg, #4a4235, #8c6749);
  }

  .static-flow i::after {
    top: auto;
    right: -3px;
    bottom: 0;
    transform: rotate(135deg);
  }

  .static-frame__media { aspect-ratio: 16 / 9; }
}

@media (max-width: 800px) {
  .static-showcase {
    margin-top: 34px;
    margin-inline: -8px;
  }

  .static-showcase__tabs {
    min-height: 70px;
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    scrollbar-width: thin;
  }

  .static-showcase__tab { padding: 15px; }
  .static-showcase__tab::after { right: 15px; left: 15px; }
  .static-showcase__sequence { padding: 14px; }

  .static-showcase__detail {
    grid-template-columns: 1fr;
  }

  .static-showcase__story {
    border-right: 0;
    border-bottom: 1px solid #3c362b;
  }

  .static-showcase__data {
    grid-template-columns: 1fr;
  }

  .static-showcase__proof {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .static-showcase__tab,
  .static-showcase__tab::after,
  .static-frame__media img {
    transition: none;
  }
}
